diff options
author | Kristian Høgsberg <[email protected]> | 2010-10-12 11:58:47 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-10-13 09:43:24 -0400 |
commit | d3491e775fb07f891463b2185d74bbad62f3ed24 (patch) | |
tree | 8c160fe7b819708dd8eeaea13a602cf8cba3994a /src/mesa/drivers/windows/gldirect/dglcontext.h | |
parent | 705e142dda047f24b563fc2bea0f922173e91d1b (diff) |
Rename GLvisual and __GLcontextModes to struct gl_config
Diffstat (limited to 'src/mesa/drivers/windows/gldirect/dglcontext.h')
-rw-r--r-- | src/mesa/drivers/windows/gldirect/dglcontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/windows/gldirect/dglcontext.h b/src/mesa/drivers/windows/gldirect/dglcontext.h index 5c433b857ef..c92169bd9fb 100644 --- a/src/mesa/drivers/windows/gldirect/dglcontext.h +++ b/src/mesa/drivers/windows/gldirect/dglcontext.h @@ -88,7 +88,7 @@ typedef struct { // Mesa vars: GLcontext *glCtx; // The core Mesa context - GLvisual *glVis; // Describes the color buffer + struct gl_config *glVis; // Describes the color buffer GLframebuffer *glBuffer; // Ancillary buffers GLuint ClearIndex; @@ -136,7 +136,7 @@ typedef struct { // Mesa context vars: // GLcontext *glCtx; // The core Mesa context - GLvisual *glVis; // Describes the color buffer + struct gl_config *glVis; // Describes the color buffer GLframebuffer *glBuffer; // Ancillary buffers GLuint ClearIndex; |