comparison test/testdyngl.c @ 2327:7b53a8401195

In testdyngl.c the event type was being anded (&) with SDL_KEYDOWN and if the result was none zero the program was quiting. This is very weird because it was working earlier this week. I added some more trace code to SDL_x11events.c In SDL_X11opengl.c I modified SDL_GL_GetSwapInterval() so that it returns a pretty good value even if you have the SGI swap extension instead of the MESA swap extension. I just saved the value you set and return it too you.
author Bob Pendleton <bob@pendleton.com>
date Fri, 07 Mar 2008 23:57:15 +0000
parents c121d94672cb
children e27bdcc80744
comparison
equal deleted inserted replaced
2326:133562468ff2 2327:7b53a8401195
178 } 178 }
179 f.glEnd(); 179 f.glEnd();
180 SDL_GL_SwapBuffers(); 180 SDL_GL_SwapBuffers();
181 181
182 while (SDL_PollEvent(&event)) { 182 while (SDL_PollEvent(&event)) {
183 if (event.type & SDL_KEYDOWN) 183 if (event.type == SDL_KEYDOWN)
184 done = 1; 184 done = 1;
185 } 185 }
186 186
187 SDL_Delay(20); 187 SDL_Delay(20);
188 } 188 }