diff options
author | Axel Davy <[email protected]> | 2013-08-15 12:47:58 +0200 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2013-09-06 15:02:34 -0700 |
commit | e8f9195e5fb34a45783d6491d2e0305a0b137439 (patch) | |
tree | 604a81c82fc66e609d137ca28856e5d56fb9ffdd /src/gallium/drivers/radeonsi | |
parent | 0a0f543082ce3bbee3d09425a912a9181128a257 (diff) |
gallium, intel: Implements new __DRI_IMAGE_USE_LINEAR and PIPE_BIND_LINEAR flags to enforce no tiling.
Signed-off-by: Axel Davy <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi')
-rw-r--r-- | src/gallium/drivers/radeonsi/r600_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/r600_texture.c b/src/gallium/drivers/radeonsi/r600_texture.c index bc66dc3b8b4..ef4e8653aee 100644 --- a/src/gallium/drivers/radeonsi/r600_texture.c +++ b/src/gallium/drivers/radeonsi/r600_texture.c @@ -515,7 +515,7 @@ struct pipe_resource *si_texture_create(struct pipe_screen *screen, int r; if (!(templ->flags & R600_RESOURCE_FLAG_TRANSFER) && - !(templ->bind & PIPE_BIND_CURSOR)) { + !(templ->bind & PIPE_BIND_CURSOR | PIPE_BIND_LINEAR)) { if (templ->flags & R600_RESOURCE_FLAG_FORCE_TILING || templ->nr_samples > 1) { array_mode = V_009910_ARRAY_2D_TILED_THIN1; |