From: Corbin Simpson Date: Wed, 11 Mar 2009 18:54:53 +0000 (-0700) Subject: r300-gallium: Fix CS count for texture emit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ddf31d0e315faba6a9519cc12e4b480ede38deb2;p=mesa.git r300-gallium: Fix CS count for texture emit. --- 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);