diff options
author | Gareth Hughes <[email protected]> | 2001-03-24 06:01:27 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 2001-03-24 06:01:27 +0000 |
commit | 425fea1c346438f1c60a768514e74f655f05417a (patch) | |
tree | fa432a1124ac1d31184944f90d8de78192244701 /src/mesa | |
parent | 577f318e0edd159d701a1f36893bbdee3c9e8c41 (diff) |
- Minor cleanups of ctx->Driver.Current*Primitive usage.
- Remove unused gl_reduce_prim array.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/context.c | 16 | ||||
-rw-r--r-- | src/mesa/main/dlist.h | 6 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 7 |
3 files changed, 7 insertions, 22 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 013a16b95be..c9f180ec0fd 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.129 2001/03/18 08:53:49 gareth Exp $ */ +/* $Id: context.c,v 1.130 2001/03/24 06:01:27 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -2032,17 +2032,3 @@ const char *_mesa_prim_name[GL_POLYGON+4] = { "inside unkown primitive", "unknown state" }; - - -GLenum gl_reduce_prim[GL_POLYGON+1] = { - GL_POINTS, - GL_LINES, - GL_LINES, - GL_LINES, - GL_TRIANGLES, - GL_TRIANGLES, - GL_TRIANGLES, - GL_TRIANGLES, - GL_TRIANGLES, - GL_TRIANGLES, -}; diff --git a/src/mesa/main/dlist.h b/src/mesa/main/dlist.h index 1e769a10d1f..2994cf73d0c 100644 --- a/src/mesa/main/dlist.h +++ b/src/mesa/main/dlist.h @@ -1,4 +1,4 @@ -/* $Id: dlist.h,v 1.15 2001/03/24 05:23:46 gareth Exp $ */ +/* $Id: dlist.h,v 1.16 2001/03/24 06:01:27 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -34,7 +34,7 @@ #define ASSERT_OUTSIDE_SAVE_BEGIN_END_WITH_RETVAL(ctx, retval) \ do { \ - if (ctx->Driver.CurrentSavePrimitive < GL_POLYGON+1 || \ + if (ctx->Driver.CurrentSavePrimitive <= GL_POLYGON || \ ctx->Driver.CurrentSavePrimitive == PRIM_INSIDE_UNKNOWN_PRIM) { \ _mesa_compile_error( ctx, GL_INVALID_OPERATION, "begin/end" ); \ return retval; \ @@ -43,7 +43,7 @@ do { \ #define ASSERT_OUTSIDE_SAVE_BEGIN_END(ctx) \ do { \ - if (ctx->Driver.CurrentSavePrimitive < GL_POLYGON+1 || \ + if (ctx->Driver.CurrentSavePrimitive <= GL_POLYGON || \ ctx->Driver.CurrentSavePrimitive == PRIM_INSIDE_UNKNOWN_PRIM) { \ _mesa_compile_error( ctx, GL_INVALID_OPERATION, "begin/end" ); \ return; \ diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 587d884b767..2c7f2e1da86 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1,4 +1,4 @@ -/* $Id: mtypes.h,v 1.30 2001/03/23 06:07:31 gareth Exp $ */ +/* $Id: mtypes.h,v 1.31 2001/03/24 06:01:27 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -1624,7 +1624,6 @@ struct __GLcontextRec { /* The string names for GL_POINT, GL_LINE_LOOP, etc */ extern const char *_mesa_prim_name[GL_POLYGON+4]; -extern GLenum gl_reduce_prim[]; #ifdef MESA_DEBUG @@ -1680,7 +1679,7 @@ do { \ #define ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, retval) \ do { \ - if (ctx->Driver.CurrentExecPrimitive != GL_POLYGON+1) { \ + if (ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) { \ _mesa_error( ctx, GL_INVALID_OPERATION, "begin/end" ); \ return retval; \ } \ @@ -1688,7 +1687,7 @@ do { \ #define ASSERT_OUTSIDE_BEGIN_END(ctx) \ do { \ - if (ctx->Driver.CurrentExecPrimitive != GL_POLYGON+1) { \ + if (ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) { \ _mesa_error( ctx, GL_INVALID_OPERATION, "begin/end" ); \ return; \ } \ |