diff options
author | Brian <[email protected]> | 2007-05-19 08:27:35 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-05-19 08:30:31 -0600 |
commit | fd54564f78d4aeae2c39ada7502ec659c14b3eca (patch) | |
tree | a6889777508c9604f5335c1e5032b5981513ba09 /src/mesa/drivers/x11/glxapi.h | |
parent | eb6418b8952f335b6cf58232b5f282fc3e325c7a (diff) |
Implement GLX_EXT_texture_from_pixmap.
Could be done more efficiently... but works.
Diffstat (limited to 'src/mesa/drivers/x11/glxapi.h')
-rw-r--r-- | src/mesa/drivers/x11/glxapi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/x11/glxapi.h b/src/mesa/drivers/x11/glxapi.h index 3187534c9a3..37de81e55ac 100644 --- a/src/mesa/drivers/x11/glxapi.h +++ b/src/mesa/drivers/x11/glxapi.h @@ -196,6 +196,11 @@ struct _glxapi_table { /*** GLX_MESA_agp_offset ***/ GLuint (*GetAGPOffsetMESA)( const GLvoid *pointer ); + + /*** GLX_EXT_texture_from_pixmap ***/ + void (*BindTexImageEXT)(Display *dpy, GLXDrawable drawable, int buffer, + const int *attrib_list); + void (*ReleaseTexImageEXT)(Display *dpy, GLXDrawable drawable, int buffer); }; |