diff options
author | Brian Paul <[email protected]> | 2005-10-31 21:52:56 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-31 21:52:56 +0000 |
commit | ffec105109f5b16bfe8282bd477d4aa32b550015 (patch) | |
tree | cb7680c14b8d0630b3075745aa9ec07889743643 /src/mesa/drivers/dri/r300/r300_cmdbuf.c | |
parent | dcf4c17fb1624af47181c63af4c3ad29f919c17a (diff) |
fix problems found with gcc 2.96 (bug 4934)
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_cmdbuf.c')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_cmdbuf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_cmdbuf.c b/src/mesa/drivers/dri/r300/r300_cmdbuf.c index c2733f3db3c..376f6805033 100644 --- a/src/mesa/drivers/dri/r300/r300_cmdbuf.c +++ b/src/mesa/drivers/dri/r300/r300_cmdbuf.c @@ -620,12 +620,13 @@ void r300EmitWait(r300ContextPtr rmesa, GLuint flags) void r300EmitAOS(r300ContextPtr rmesa, GLuint nr, GLuint offset) { - if (RADEON_DEBUG & DEBUG_VERTS) - fprintf(stderr, "%s: nr=%d, ofs=0x%08x\n", __func__, nr, offset); int sz = 1 + (nr >> 1) * 3 + (nr & 1) * 2; int i; LOCAL_VARS + if (RADEON_DEBUG & DEBUG_VERTS) + fprintf(stderr, "%s: nr=%d, ofs=0x%08x\n", __func__, nr, offset); + start_packet3(RADEON_CP_PACKET3_3D_LOAD_VBPNTR, sz-1); e32(nr); for(i=0;i+1<nr;i+=2){ |