diff options
author | Kristof Ralovich <[email protected]> | 2008-08-20 15:18:38 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-20 15:33:03 -0600 |
commit | e2060348630b59a446bac7f734fdde40033093ab (patch) | |
tree | 2920967978965236aa4e4f667513d70fe72ca5a8 /src/glx/x11/glxcmds.c | |
parent | fb36a54a1c327efc6602ff104b097359f9823931 (diff) |
glx: free vertex array state when context is destroyed
Diffstat (limited to 'src/glx/x11/glxcmds.c')
-rw-r--r-- | src/glx/x11/glxcmds.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glx/x11/glxcmds.c b/src/glx/x11/glxcmds.c index 6cafb33b1fe..0f0cb6233a1 100644 --- a/src/glx/x11/glxcmds.c +++ b/src/glx/x11/glxcmds.c @@ -532,6 +532,8 @@ DestroyContext(Display *dpy, GLXContext gc) } #endif + __glXFreeVertexArrayState(gc); + if (gc->currentDpy) { /* Have to free later cuz it's in use now */ __glXUnlock(); |