diff options
author | Keith Whitwell <[email protected]> | 1999-08-26 14:50:49 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 1999-08-26 14:50:49 +0000 |
commit | 2be79c1aa2c168b7ecfb8289ce462ffb1de935eb (patch) | |
tree | ade794e15539608ae1e89d264cdeb459c50783ae /src/mesa/main/dlist.c | |
parent | 0552b3063349d167b128714e49c704e8f9006071 (diff) |
various pipeline bugs
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 001de0367b2..24266e3e424 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -1,4 +1,4 @@ -/* $Id: dlist.c,v 1.1 1999/08/19 00:55:41 jtg Exp $ */ +/* $Id: dlist.c,v 1.2 1999/08/26 14:50:49 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -2454,6 +2454,10 @@ static void execute_list( GLcontext *ctx, GLuint list ) case OPCODE_VERTEX_CASSETTE: if (ctx->NewState) gl_update_state(ctx); + if (ctx->CompileCVAFlag) { + ctx->CompileCVAFlag = 0; + ctx->CVA.elt.pipeline_valid = 0; + } if (!ctx->CVA.elt.pipeline_valid) gl_build_immediate_pipeline( ctx ); gl_fixup_cassette( ctx, (struct immediate *) n[1].data ); |