diff options
author | Dave Airlie <[email protected]> | 2010-10-21 13:36:01 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-10-21 13:36:01 +1000 |
commit | 92ed84d11560e226c87bf2758b1503e3075b3f82 (patch) | |
tree | ffb06b34ab7d25255b9c497fb609ae2486012b3a /src/gallium/drivers/r600/r600_texture.c | |
parent | 91e513044de21f20c2c085a99e9d784c7a61173c (diff) |
r600g: introduce a per-driver resource flag for transfers.
this is to be used to decide not to tile a surface being used for transfers.
Diffstat (limited to 'src/gallium/drivers/r600/r600_texture.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_texture.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index c765c0c87a1..b0e5cda6010 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -361,7 +361,7 @@ int r600_texture_depth_flush(struct pipe_context *ctx, resource.nr_samples = 0; resource.usage = PIPE_USAGE_DYNAMIC; resource.bind = 0; - resource.flags = 0; + resource.flags = R600_RESOURCE_FLAG_TRANSFER; resource.bind |= PIPE_BIND_DEPTH_STENCIL; @@ -412,7 +412,7 @@ struct pipe_transfer* r600_texture_get_transfer(struct pipe_context *ctx, resource.nr_samples = 0; resource.usage = PIPE_USAGE_DYNAMIC; resource.bind = 0; - resource.flags = 0; + resource.flags = R600_RESOURCE_FLAG_TRANSFER; /* For texture reading, the temporary (detiled) texture is used as * a render target when blitting from a tiled texture. */ if (usage & PIPE_TRANSFER_READ) { |