summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r600/evergreen_state.c
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2013-09-21 20:07:18 +0200
committerMarek Olšák <marek.olsak@amd.com>2013-09-29 15:18:08 +0200
commit4ea2e5a4e7467def0f2eacb5ab5a73bd8bfaa183 (patch)
treeb0351a138c06151a0f0ea35a9f29ecb943327562 /src/gallium/drivers/r600/evergreen_state.c
parentba29324dba334054950cb25b0a4bd98b05fc6631 (diff)
r600g: get rid of r600_texture::is_rat
It's always 0.
Diffstat (limited to 'src/gallium/drivers/r600/evergreen_state.c')
-rw-r--r--src/gallium/drivers/r600/evergreen_state.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/gallium/drivers/r600/evergreen_state.c b/src/gallium/drivers/r600/evergreen_state.c
index cba1dcd620d..ca835e3af1b 100644
--- a/src/gallium/drivers/r600/evergreen_state.c
+++ b/src/gallium/drivers/r600/evergreen_state.c
@@ -1533,12 +1533,6 @@ void evergreen_init_color_surface(struct r600_context *rctx,
S_028C70_NUMBER_TYPE(ntype) |
S_028C70_ENDIAN(endian);
- if (rtex->is_rat) {
- color_info |= S_028C70_RAT(1);
- color_dim = S_028C78_WIDTH_MAX(pipe_tex->width0 & 0xffff)
- | S_028C78_HEIGHT_MAX((pipe_tex->width0 >> 16) & 0xffff);
- }
-
/* EXPORT_NORM is an optimzation that can be enabled for better
* performance in certain cases.
* EXPORT_NORM can be enabled if:
@@ -2228,7 +2222,7 @@ static void evergreen_emit_framebuffer_state(struct r600_context *rctx, struct r
radeon_emit(cs, reloc);
}
/* set CB_COLOR1_INFO for possible dual-src blending */
- if (i == 1 && !((struct r600_texture*)state->cbufs[0]->texture)->is_rat) {
+ if (i == 1) {
r600_write_context_reg(cs, R_028C70_CB_COLOR0_INFO + 1 * 0x3C,
((struct r600_surface*)state->cbufs[0])->cb_color_info);