diff options
author | Marek Olšák <[email protected]> | 2010-08-11 02:58:50 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-08-11 04:48:56 +0200 |
commit | ca5227ce8b749fa3f00438c41066def6e0a8dbe4 (patch) | |
tree | 4d4d018cde226a7eb4d2006483765833241481c3 /src | |
parent | 683ef52e19576f6e1263bc7d25fc9475c519eade (diff) |
r300g: initialize VAP_VTX_STATE_CNTL
This got lost during the rasterizer rewrite.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r300/r300_state_derived.c | 5 |
1 files changed, 5 insertions, 0 deletions
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; |