diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:01 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:01 +0000 |
commit | adc7f9a4ebdfe11d4cd6de9388b63dfe36450b39 (patch) | |
tree | 23eb7becc5360b2cbe16aa8d45529880067f3989 /GL/glx/glxcontext.h | |
parent | 90f1536dd315cd265bfc7ef35058761a65a01734 (diff) |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_16
Diffstat (limited to 'GL/glx/glxcontext.h')
-rw-r--r-- | GL/glx/glxcontext.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/GL/glx/glxcontext.h b/GL/glx/glxcontext.h index b64de66d6..6454b4952 100644 --- a/GL/glx/glxcontext.h +++ b/GL/glx/glxcontext.h @@ -1,4 +1,4 @@ -/* $XFree86: xc/programs/Xserver/GL/glx/glxcontext.h,v 1.4 2002/02/22 21:45:07 dawes Exp $ */ +/* $XFree86: xc/programs/Xserver/GL/glx/glxcontext.h,v 1.5 2003/09/28 20:15:43 alanh Exp $ */ #ifndef _GLX_context_h_ #define _GLX_context_h_ @@ -54,7 +54,8 @@ struct __GLXcontextRec { /* ** list of contexts bound to the same drawable */ - struct __GLXcontextRec *nextPriv; + struct __GLXcontextRec *nextDrawPriv; + struct __GLXcontextRec *nextReadPriv; /* ** Opaque pointer the context object created by the GL that the @@ -142,12 +143,14 @@ struct __GLXcontextRec { /* ** Set only if current drawable is a glx pixmap. */ - __GLXpixmap *pGlxPixmap; + __GLXpixmap *drawPixmap; + __GLXpixmap *readPixmap; /* ** The drawable private this context is bound to */ - __GLXdrawablePrivate *glxPriv; + __GLXdrawablePrivate *drawPriv; + __GLXdrawablePrivate *readPriv; }; /* pending state defines */ |