summaryrefslogtreecommitdiff
path: root/nouveau/nouveau_bo.h
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2010-09-28 22:47:11 +0200
committerFrancisco Jerez <currojerez@riseup.net>2010-10-12 04:10:04 +0200
commit1b9187c43a0c17600611edb9e299141748e87974 (patch)
treea58dc9fb7c988e8451f639ae07c3dbeb8e9dbcf6 /nouveau/nouveau_bo.h
parent96214860bb0a5e11e7d346351a1be248e3716144 (diff)
nouveau: Define buffer object usage flags.
Signed-off-by: Francisco Jerez <currojerez@riseup.net> Acked-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'nouveau/nouveau_bo.h')
-rw-r--r--nouveau/nouveau_bo.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/nouveau/nouveau_bo.h b/nouveau/nouveau_bo.h
index 1e77ab0f..3a1f2d4a 100644
--- a/nouveau/nouveau_bo.h
+++ b/nouveau/nouveau_bo.h
@@ -39,6 +39,12 @@
#define NOUVEAU_BO_IFLUSH (1 << 15)
#define NOUVEAU_BO_DUMMY (1 << 31)
+#define NOUVEAU_BO_TILE_LAYOUT_MASK 0x0000ff00
+#define NOUVEAU_BO_TILE_16BPP 0x00000001
+#define NOUVEAU_BO_TILE_32BPP 0x00000002
+#define NOUVEAU_BO_TILE_ZETA 0x00000004
+#define NOUVEAU_BO_TILE_SCANOUT 0x00000008
+
struct nouveau_bo {
struct nouveau_device *device;
uint32_t handle;