diff options
author | Keith Whitwell <[email protected]> | 2000-02-25 03:55:39 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2000-02-25 03:55:39 +0000 |
commit | e828bc8f61736f6ba2eff7b2d3dd24056c8b86e0 (patch) | |
tree | 7e8ff2fef8cec0988b77074b9591e692464931a9 /src/mesa/main/dlist.c | |
parent | 8ceb5c34dd4c0da73f9cb58b803a84e17e545c4b (diff) |
Fog coordinate stage which drivers may use to replace standard fogging
mechanism.
LogicOp state change callback
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 71c4996a1b2..672773f124a 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -1,4 +1,4 @@ -/* $Id: dlist.c,v 1.31 2000/02/24 22:04:03 brianp Exp $ */ +/* $Id: dlist.c,v 1.32 2000/02/25 03:55:39 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -3365,10 +3365,12 @@ static void execute_list( GLcontext *ctx, GLuint list ) (MESA_VERBOSE & VERBOSE_IMMEDIATE)) gl_print_cassette( (struct immediate *) n[1].data ); - if (0) - fprintf(stderr, "Run cassette %d, rows %d..%d, beginstate %x\n", + if (MESA_VERBOSE & VERBOSE_DISPLAY_LIST) { + fprintf(stderr, "Run cassette %d, rows %d..%d, beginstate %x ", IM->id, IM->Start, IM->Count, IM->BeginState); + gl_print_vert_flags("orflag", IM->OrFlag); + } gl_fixup_cassette( ctx, (struct immediate *) n[1].data ); gl_execute_cassette( ctx, (struct immediate *) n[1].data ); @@ -4789,6 +4791,7 @@ static void print_list( GLcontext *ctx, FILE *f, GLuint list ) ((struct immediate *) n[1].data)->id, n[2].ui, n[3].ui); + gl_print_cassette( (struct immediate *) n[1].data ); break; case OPCODE_CONTINUE: fprintf(f,"DISPLAY-LIST-CONTINUE\n"); |