diff options
Diffstat (limited to 'src/glx/glxclient.h')
-rw-r--r-- | src/glx/glxclient.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index 57d254ea987..78c5f33d4d5 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -249,6 +249,14 @@ typedef struct __GLXattributeMachineRec __GLXattribute **stackPointer; } __GLXattributeMachine; +struct glx_context_vtable { + void (*bind_tex_image)(Display * dpy, + GLXDrawable drawable, + int buffer, const int *attrib_list); + void (*release_tex_image)(Display * dpy, GLXDrawable drawable, int buffer); + +}; + /** * GLX state that needs to be kept on the client. One of these records * exist for each context that has been made current by this client. @@ -457,6 +465,8 @@ struct __GLXcontextRec unsigned long thread_id; char gl_extension_bits[__GL_EXT_BYTES]; + + const struct glx_context_vtable *vtable; }; #define __glXSetError(gc,code) \ @@ -511,6 +521,11 @@ struct __GLXscreenConfigsRec */ char *effectiveGLXexts; + /** + * Context vtable to use for direct contexts on this screen + */ + const struct glx_context_vtable *direct_context_vtable; + #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL) /** * Per screen direct rendering interface functions and data. |