diff options
author | Marek Olšák <[email protected]> | 2012-08-16 20:36:40 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-08-16 20:44:54 +0200 |
commit | f36c404f900dee95ecfe9d5c6a7c6efdf5e25963 (patch) | |
tree | 1f34720151ea9e68325794b844c50d2a77b5db4c /src/gallium/drivers/r600 | |
parent | 795834432b11418d82db9a5580c916b3bee1a8f2 (diff) |
r600g: disable tiling for 422 formats again
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_texture.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index c1499e66331..b9b3ae8323b 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -322,6 +322,10 @@ struct pipe_resource *r600_texture_create(struct pipe_screen *screen, } } + /* XXX tiling is broken for the 422 formats */ + if (util_format_description(templ->format)->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED) + array_mode = V_038000_ARRAY_LINEAR_ALIGNED; + r = r600_init_surface(rscreen, &surface, templ, array_mode, templ->flags & R600_RESOURCE_FLAG_TRANSFER, templ->flags & R600_RESOURCE_FLAG_FLUSHED_DEPTH); |