diff options
author | Kristian Høgsberg <krh@redhat.com> | 2007-01-07 08:12:01 -0500 |
---|---|---|
committer | Kristian Høgsberg <krh@redhat.com> | 2007-10-05 00:09:32 -0400 |
commit | 4a22ae8d446855d839cc199df8eb1b057045cb88 (patch) | |
tree | 727c7f597f768631106447be6f484abe6a5c4e50 /src/glx/x11/glxclient.h | |
parent | 4ceefccbfa180d19e27716bf7f282d0438ac34bd (diff) |
Remove XIDs from DRI interface (see #5714).
Diffstat (limited to 'src/glx/x11/glxclient.h')
-rw-r--r-- | src/glx/x11/glxclient.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/glx/x11/glxclient.h b/src/glx/x11/glxclient.h index 477566cc46..3dbdc306da 100644 --- a/src/glx/x11/glxclient.h +++ b/src/glx/x11/glxclient.h @@ -60,6 +60,7 @@ #include "GL/internal/glcore.h" #include "glapitable.h" #include "glxextensions.h" +#include "glxhash.h" #if defined( USE_XTHREADS ) # include <X11/Xthreads.h> #elif defined( PTHREADS ) @@ -349,6 +350,11 @@ struct __GLXcontextRec { * Per context direct rendering interface functions and data. */ __DRIcontext driContext; + + /** + * Pointer to the mode used to create this context. + */ + const __GLcontextModes * mode; #endif /** @@ -456,6 +462,7 @@ typedef struct __GLXscreenConfigsRec { * Per screen direct rendering interface functions and data. */ __DRIscreen driScreen; + __glxHashTable *drawHash; #endif /** |