From: Brian Paul Date: Thu, 2 May 2013 01:15:32 +0000 (-0600) Subject: mesa: remove unused PRIM_INSIDE_UNKNOWN_PRIM constant X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c1a5c5c13d838309cf88664edf159e6086408f28;p=mesa.git mesa: remove unused PRIM_INSIDE_UNKNOWN_PRIM constant Reviewed-by: Jose Fonseca --- diff --git a/src/mapi/glapi/gen/gl_enums.py b/src/mapi/glapi/gen/gl_enums.py index 3bd511edcc8..497eeee4d5d 100644 --- a/src/mapi/glapi/gen/gl_enums.py +++ b/src/mapi/glapi/gen/gl_enums.py @@ -126,7 +126,6 @@ static const char *prim_names[PRIM_UNKNOWN + 1] = { "GL_QUAD_STRIP", "GL_POLYGON", "outside begin/end", - "inside unknown primitive", "unknown state" }; diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 1e5aca13a48..916f38bd8c1 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -685,10 +685,9 @@ struct dd_function_table { GLuint CurrentExecPrimitive; /** - * Current state of an in-progress compilation. - * - * May take on any of the additional values PRIM_OUTSIDE_BEGIN_END, - * PRIM_INSIDE_UNKNOWN_PRIM or PRIM_UNKNOWN defined above. + * Current glBegin state of an in-progress compilation. May be + * GL_POINTS, GL_TRIANGLE_STRIP, etc. or PRIM_OUTSIDE_BEGIN_END + * or PRIM_UNKNOWN. */ GLuint CurrentSavePrimitive; diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 57f862be2af..3dd676bc23b 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -122,8 +122,7 @@ do { \ */ #define ASSERT_OUTSIDE_SAVE_BEGIN_END_WITH_RETVAL(ctx, retval) \ do { \ - if (ctx->Driver.CurrentSavePrimitive <= PRIM_MAX || \ - ctx->Driver.CurrentSavePrimitive == PRIM_INSIDE_UNKNOWN_PRIM) { \ + if (ctx->Driver.CurrentSavePrimitive <= PRIM_MAX) { \ _mesa_compile_error( ctx, GL_INVALID_OPERATION, "glBegin/End" ); \ return retval; \ } \ @@ -137,8 +136,7 @@ do { \ */ #define ASSERT_OUTSIDE_SAVE_BEGIN_END(ctx) \ do { \ - if (ctx->Driver.CurrentSavePrimitive <= PRIM_MAX || \ - ctx->Driver.CurrentSavePrimitive == PRIM_INSIDE_UNKNOWN_PRIM) { \ + if (ctx->Driver.CurrentSavePrimitive <= PRIM_MAX) { \ _mesa_compile_error( ctx, GL_INVALID_OPERATION, "glBegin/End" ); \ return; \ } \ diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 14b3c5beda0..b37c6ab66e5 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -87,8 +87,7 @@ struct set_entry; /** Extra draw modes beyond GL_POINTS, GL_TRIANGLE_FAN, etc */ #define PRIM_MAX GL_TRIANGLE_STRIP_ADJACENCY #define PRIM_OUTSIDE_BEGIN_END (PRIM_MAX + 1) -#define PRIM_INSIDE_UNKNOWN_PRIM (PRIM_MAX + 2) -#define PRIM_UNKNOWN (PRIM_MAX + 3) +#define PRIM_UNKNOWN (PRIM_MAX + 2) diff --git a/src/mesa/vbo/vbo_save_api.c b/src/mesa/vbo/vbo_save_api.c index 52293ce09a5..4fae37a2afe 100644 --- a/src/mesa/vbo/vbo_save_api.c +++ b/src/mesa/vbo/vbo_save_api.c @@ -1515,8 +1515,7 @@ vbo_save_SaveFlushVertices(struct gl_context *ctx) /* Noop when we are actually active: */ - if (ctx->Driver.CurrentSavePrimitive == PRIM_INSIDE_UNKNOWN_PRIM || - ctx->Driver.CurrentSavePrimitive <= PRIM_MAX) + if (ctx->Driver.CurrentSavePrimitive <= PRIM_MAX) return; if (save->vert_count || save->prim_count)