r600g: evergreen fixup dsa state for running query.

evergreen is always the same as r700 here.
This commit is contained in:
Dave Airlie 2010-09-13 18:50:12 +10:00
parent 2471d0d6c5
commit 61c2861b4e
2 changed files with 2 additions and 3 deletions

View File

@ -429,8 +429,7 @@ static void eg_dsa(struct r600_context *rctx, struct radeon_state *rstate)
if (query_running) {
db_render_override |= S_028D10_NOOP_CULL_DISABLE(1);
if (rscreen->chip_class == R700)
db_render_control |= S_028D0C_R700_PERFECT_ZPASS_COUNTS(1);
db_render_control |= S_028D0C_PERFECT_ZPASS_COUNTS(1);
}
rstate->states[EG_DSA__DB_STENCIL_CLEAR] = 0x00000000;

View File

@ -665,7 +665,7 @@
#define R_028D0C_DB_RENDER_CONTROL 0x028D0C
#define S_028D0C_STENCIL_COMPRESS_DISABLE(x) (((x) & 0x1) << 5)
#define S_028D0C_DEPTH_COMPRESS_DISABLE(x) (((x) & 0x1) << 6)
#define S_028D0C_R700_PERFECT_ZPASS_COUNTS(x) (((x) & 0x1) << 15)
#define S_028D0C_PERFECT_ZPASS_COUNTS(x) (((x) & 0x1) << 15)
#define R_028D10_DB_RENDER_OVERRIDE 0x028D10
#define V_028D10_FORCE_OFF 0
#define V_028D10_FORCE_ENABLE 1