From: Marek Olšák Date: Wed, 11 Aug 2010 00:58:50 +0000 (+0200) Subject: r300g: initialize VAP_VTX_STATE_CNTL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ca5227ce8b749fa3f00438c41066def6e0a8dbe4;p=mesa.git r300g: initialize VAP_VTX_STATE_CNTL This got lost during the rasterizer rewrite. --- diff --git a/src/gallium/drivers/r300/r300_state_derived.c b/src/gallium/drivers/r300/r300_state_derived.c index 39000477cb0..c047a127ba7 100644 --- a/src/gallium/drivers/r300/r300_state_derived.c +++ b/src/gallium/drivers/r300/r300_state_derived.c @@ -337,6 +337,11 @@ static void r300_update_rs_block(struct r300_context *r300) rX00_rs_tex_write = r300_rs_tex_write; } + /* 0x5555 copied from classic, which means: + * Select user color 0 for COLOR0 up to COLOR7. + * What the hell does that mean? */ + rs.vap_vtx_state_cntl = 0x5555; + /* The position is always present in VAP. */ rs.vap_vsm_vtx_assm |= R300_INPUT_CNTL_POS; rs.vap_out_vtx_fmt[0] |= R300_VAP_OUTPUT_VTX_FMT_0__POS_PRESENT;