diff options
author | Corbin Simpson <[email protected]> | 2009-03-11 11:54:53 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-03-11 15:23:09 -0700 |
commit | ddf31d0e315faba6a9519cc12e4b480ede38deb2 (patch) | |
tree | 65e95a3c78728d0627e70682a128cc559c1ae8e5 /src/gallium/drivers/r300 | |
parent | 6b1596aed3fccc6f6edbbb931f8eca96a7163b9d (diff) |
r300-gallium: Fix CS count for texture emit.
Diffstat (limited to 'src/gallium/drivers/r300')
-rw-r--r-- | src/gallium/drivers/r300/r300_emit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_emit.c b/src/gallium/drivers/r300/r300_emit.c index 4ffd92c9dc3..68741e9f084 100644 --- a/src/gallium/drivers/r300/r300_emit.c +++ b/src/gallium/drivers/r300/r300_emit.c @@ -276,7 +276,7 @@ void r300_emit_texture(struct r300_context* r300, { CS_LOCALS(r300); - BEGIN_CS(8); + BEGIN_CS(10); OUT_CS_REG(R300_TX_FORMAT0_0 + (offset * 4), tex->state.format0); OUT_CS_REG(R300_TX_FORMAT1_0 + (offset * 4), tex->state.format1); OUT_CS_REG(R300_TX_FORMAT2_0 + (offset * 4), tex->state.format2); |