From 0452d52ae353f3c6d6e216c7af00a0c369c05622 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Mon, 14 Jun 2010 23:38:48 +0200 Subject: [PATCH] r300g: initialize US_CODE_BANK on r4xx --- src/gallium/drivers/r300/r300_state_invariant.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/r300/r300_state_invariant.c b/src/gallium/drivers/r300/r300_state_invariant.c index 34d3a169d57..b3181a37ea1 100644 --- a/src/gallium/drivers/r300/r300_state_invariant.c +++ b/src/gallium/drivers/r300/r300_state_invariant.c @@ -71,7 +71,8 @@ void r300_emit_invariant_state(struct r300_context* r300, /* XXX unsorted stuff from surface_fill */ BEGIN_CS(38 + (r300->screen->caps.has_tcl ? 7 : 0) + - (r300->screen->caps.is_rv350 ? 4 : 0)); + (r300->screen->caps.is_rv350 ? 4 : 0) + + (r300->screen->caps.is_r400 ? 2 : 0)); if (r300->screen->caps.has_tcl) { /*Flushing PVS is required before the VAP_GB registers can be changed*/ @@ -112,5 +113,7 @@ void r300_emit_invariant_state(struct r300_context* r300, OUT_CS_REG(R300_ZB_DEPTHCLEARVALUE, 0x00000000); OUT_CS_REG(R300_ZB_HIZ_OFFSET, 0x00000000); OUT_CS_REG(R300_ZB_HIZ_PITCH, 0x00000000); + if (r300->screen->caps.is_r400) + OUT_CS_REG(R400_US_CODE_BANK, 0); END_CS; } -- 2.30.2