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_resource.h | |
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_resource.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_resource.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_resource.h b/src/gallium/drivers/r600/r600_resource.h index 5d9fe8cf944..d152285815c 100644 --- a/src/gallium/drivers/r600/r600_resource.h +++ b/src/gallium/drivers/r600/r600_resource.h @@ -25,6 +25,9 @@ #include "util/u_transfer.h" +/* flag to indicate a resource is to be used as a transfer so should not be tiled */ +#define R600_RESOURCE_FLAG_TRANSFER PIPE_RESOURCE_FLAG_DRV_PRIV + /* Texture transfer. */ struct r600_transfer { /* Base class. */ |