diff options
author | Marcin Slusarz <[email protected]> | 2010-01-17 14:49:34 -0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-18 10:44:53 -0700 |
commit | 23ae31820042f2bc4694f7c48696a697d674b802 (patch) | |
tree | 18591527553acde3d6b395986eb107c9280a67ed /progs/xdemos | |
parent | ccc888c39ee8a7c460dca5b1b659d28dbbc4c689 (diff) |
glxgears: unbind current context before "destroying" it
glXDestroyContext does not destroy the context if it's still
connected to some window. Unbind context from window to test it.
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'progs/xdemos')
-rw-r--r-- | progs/xdemos/glxgears.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/progs/xdemos/glxgears.c b/progs/xdemos/glxgears.c index 088f25a357a..2993c824161 100644 --- a/progs/xdemos/glxgears.c +++ b/progs/xdemos/glxgears.c @@ -771,6 +771,7 @@ main(int argc, char *argv[]) glDeleteLists(gear1, 1); glDeleteLists(gear2, 1); glDeleteLists(gear3, 1); + glXMakeCurrent(dpy, None, NULL); glXDestroyContext(dpy, ctx); XDestroyWindow(dpy, win); XCloseDisplay(dpy); |