diff options
author | Patrice Mandin <[email protected]> | 2008-09-21 14:02:30 +0200 |
---|---|---|
committer | Patrice Mandin <[email protected]> | 2008-09-21 14:02:30 +0200 |
commit | 70071484d95bed8c2c932d1c79e20230bcdbc1dc (patch) | |
tree | b7c4bee32f62dc822154a39fdafd17bdbbd866e1 /src/gallium/drivers/nouveau | |
parent | ed0c308f39f7d7a5cb05571e37440469eacbd624 (diff) |
nouveau: add flag for swizzled surface upload
Diffstat (limited to 'src/gallium/drivers/nouveau')
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_bo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_bo.h b/src/gallium/drivers/nouveau/nouveau_bo.h index 65b138283c4..0ed3367815a 100644 --- a/src/gallium/drivers/nouveau/nouveau_bo.h +++ b/src/gallium/drivers/nouveau/nouveau_bo.h @@ -37,6 +37,7 @@ #define NOUVEAU_BO_LOCAL (1 << 9) #define NOUVEAU_BO_TILED (1 << 10) #define NOUVEAU_BO_ZTILE (1 << 11) +#define NOUVEAU_BO_SWIZZLED (1 << 12) #define NOUVEAU_BO_DUMMY (1 << 31) struct nouveau_bo { |