diff options
author | Keith Whitwell <[email protected]> | 2000-12-26 07:41:32 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2000-12-26 07:41:32 +0000 |
commit | 9ef50d5826c92aa7c9dd19702f18b0dfec59f03c (patch) | |
tree | 6f0e520a5bde4c533664a246543068722c0712a6 /src/mesa/main/dlist.h | |
parent | cab974cf6c2dbfbf5dd5d291e1aae0f8eeb34290 (diff) |
fix xscreensaver cores
Diffstat (limited to 'src/mesa/main/dlist.h')
-rw-r--r-- | src/mesa/main/dlist.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/main/dlist.h b/src/mesa/main/dlist.h index a8cd34d6128..e2dea892696 100644 --- a/src/mesa/main/dlist.h +++ b/src/mesa/main/dlist.h @@ -1,4 +1,4 @@ -/* $Id: dlist.h,v 1.10 2000/12/26 05:09:28 keithw Exp $ */ +/* $Id: dlist.h,v 1.11 2000/12/26 07:41:32 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -34,8 +34,9 @@ #define ASSERT_OUTSIDE_SAVE_BEGIN_END_WITH_RETVAL(ctx, retval) \ do { \ - if (ctx->Driver.CurrentExecPrimitive != GL_POLYGON+1) { \ - gl_error( ctx, GL_INVALID_OPERATION, "begin/end" ); \ + if (ctx->Driver.CurrentSavePrimitive < GL_POLYGON+1 || \ + ctx->Driver.CurrentSavePrimitive == PRIM_INSIDE_UNKNOWN_PRIM) { \ + _mesa_compile_error( ctx, GL_INVALID_OPERATION, "begin/end" ); \ return retval; \ } \ } while (0) |