PDA

View Full Version : use glutInitDisplay() w/ SDL?



Quarg
July 15th, 2009, 03:23 AM
Hello all,

Should I use the glutInitdDisplay() when developing with SDL? Or do I need it? I used a program without it easily, and added the function at the beginning of a function, and it worked just the same. Is it necessary?

slavik
July 15th, 2009, 05:15 AM
SDL does the init, glut doesn't in this case ... avoid glut when using SDL.

Quarg
July 20th, 2009, 03:57 AM
O.K. Thanks! I have found the boundaries between the two confusing at times. that helps.