diff options
author | Brian Paul <[email protected]> | 2000-09-26 20:53:53 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-09-26 20:53:53 +0000 |
commit | b1394fa92aaaf859ce9efc8b5fc194397921320c (patch) | |
tree | 48612380d5f16b24deacf643e127fc1b319fbc18 /src/mesa/main/clip.c | |
parent | 3b18a36f210da9d66acd1228d24948cd77c2e81e (diff) |
First batch of OpenGL SI related changes:
Renamed struct gl_context to struct __GLcontextRec.
Include glcore.h, setup GL imports/exports.
Replaced gl_ prefix with _mesa_ prefix in context.[ch] functions.
GLcontext's Visual field is no longer a pointer.
Diffstat (limited to 'src/mesa/main/clip.c')
-rw-r--r-- | src/mesa/main/clip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/clip.c b/src/mesa/main/clip.c index d3d1395d26c..5d589f7638c 100644 --- a/src/mesa/main/clip.c +++ b/src/mesa/main/clip.c @@ -1,4 +1,4 @@ -/* $Id: clip.c,v 1.8 2000/04/17 18:18:00 keithw Exp $ */ +/* $Id: clip.c,v 1.9 2000/09/26 20:53:53 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -375,7 +375,7 @@ void gl_update_clipmask( GLcontext *ctx ) { GLuint mask = 0; - if (ctx->Visual->RGBAflag) + if (ctx->Visual.RGBAflag) { mask |= CLIP_RGBA0; |