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/glxclient.h | |
parent | fb36a54a1c327efc6602ff104b097359f9823931 (diff) |
glx: free vertex array state when context is destroyed
Diffstat (limited to 'src/glx/x11/glxclient.h')
-rw-r--r-- | src/glx/x11/glxclient.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/glx/x11/glxclient.h b/src/glx/x11/glxclient.h index 8143289ecc8..e2b4218200d 100644 --- a/src/glx/x11/glxclient.h +++ b/src/glx/x11/glxclient.h @@ -695,9 +695,10 @@ extern void __glEmptyImage(__GLXcontext*, GLint, GLint, GLint, GLint, GLenum, /* -** Allocate and Initialize Vertex Array client state +** Allocate and Initialize Vertex Array client state, and free. */ -extern void __glXInitVertexArrayState(__GLXcontext*); +extern void __glXInitVertexArrayState(__GLXcontext *); +extern void __glXFreeVertexArrayState(__GLXcontext *); /* ** Inform the Server of the major and minor numbers and of the client |