This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
In testdyngl.c the event type was being anded (&) with SDL_KEYDOWN an…
…d 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.
- Loading branch information
Showing
with
23 additions
and 5 deletions.
- +7 −2 src/video/x11/SDL_x11events.c
- +15 −2 src/video/x11/SDL_x11opengl.c
- +1 −1 test/testdyngl.c