diff options
author | Corbin Simpson <[email protected]> | 2009-02-16 03:55:16 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-16 04:12:42 -0800 |
commit | f211da4c67fbe0e67475efcd9535b9cf9e5ae467 (patch) | |
tree | 38315f992a8cc2a76b46436de64727cc60d55c31 /src/gallium/drivers/r300/r300_surface.c | |
parent | 1bb2fb498ee65ba29aa4098983116be3d81cc2da (diff) |
r300-gallium: Fix BEGIN_CS and END_CS counting and mismatch.
Diffstat (limited to 'src/gallium/drivers/r300/r300_surface.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_surface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_surface.c b/src/gallium/drivers/r300/r300_surface.c index 0a4710151a0..b2c4f4251d9 100644 --- a/src/gallium/drivers/r300/r300_surface.c +++ b/src/gallium/drivers/r300/r300_surface.c @@ -54,7 +54,7 @@ static void r300_surface_fill(struct pipe_context* pipe, return; } - BEGIN_CS(161 + (caps->is_r500 ? 22 : 14) + (caps->has_tcl ? 4 : 2)); + BEGIN_CS(163 + (caps->is_r500 ? 22 : 14) + (caps->has_tcl ? 4 : 2)); /* Flush PVS. */ OUT_CS_REG(R300_VAP_PVS_STATE_FLUSH_REG, 0x0); |