r300/compiler: Implement the texture semaphore
[mesa.git] / src / gallium / drivers / r300 / r300_defines.h
index 2d111f9158d0db9dec79eaf928ea22c10a1274cd..30e9befad21fdc7e4e8da82a30fd794fa65a4a1e 100644 (file)
 
 #define R300_INVALID_FORMAT 0xffff
 
-/* Tiling flags. */
-enum r300_buffer_tiling {
-    R300_BUFFER_LINEAR = 0,
-    R300_BUFFER_TILED,
-    R300_BUFFER_SQUARETILED,
-
-    R300_BUFFER_UNKNOWN,
-    R300_BUFFER_SELECT_LAYOUT = R300_BUFFER_UNKNOWN
-};
-
-enum r300_buffer_domain { /* bitfield */
-    R300_DOMAIN_GTT  = 2,
-    R300_DOMAIN_VRAM = 4
-};
-
 #endif