summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r600/r600_state.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2011-02-01 14:38:45 +1000
committerDave Airlie <airlied@redhat.com>2011-02-01 14:38:45 +1000
commit11bc8991e94e2fa6d461193a6aff47f8f94b7a47 (patch)
tree619ced23a7e5216288a7c5134f0681438ac77ec6 /src/gallium/drivers/r600/r600_state.c
parenta112cc283d2c62f895cdd6aceb976b3c7ef5f59d (diff)
r600g: just change tile type when buffer is set to depth.
Not 100% sure on this one, but this is how it should work, the question is whether it will uncover other bugs elsewhere.
Diffstat (limited to 'src/gallium/drivers/r600/r600_state.c')
-rw-r--r--src/gallium/drivers/r600/r600_state.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_state.c b/src/gallium/drivers/r600/r600_state.c
index acaa5c05ae..6adbbd9eab 100644
--- a/src/gallium/drivers/r600/r600_state.c
+++ b/src/gallium/drivers/r600/r600_state.c
@@ -759,10 +759,9 @@ static void r600_db(struct r600_pipe_context *rctx, struct r600_pipe_state *rsta
surf = (struct r600_surface *)state->zsbuf;
rtex = (struct r600_resource_texture*)state->zsbuf->texture;
- rtex->tiled = 1;
- rtex->array_mode[level] = 2;
+
rtex->tile_type = 1;
- rtex->depth = 1;
+
rbuffer = &rtex->resource;
/* XXX quite sure for dx10+ hw don't need any offset hacks */