diff options
Diffstat (limited to 'src/intel.h')
-rw-r--r-- | src/intel.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/intel.h b/src/intel.h index 1e04d9b2..06faf2da 100644 --- a/src/intel.h +++ b/src/intel.h @@ -541,7 +541,12 @@ typedef struct intel_screen_private { Bool need_mi_flush; - Bool tiling; + unsigned int tiling; +#define INTEL_TILING_FB 0x1 +#define INTEL_TILING_2D 0x2 +#define INTEL_TILING_3D 0x4 +#define INTEL_TILING_ALL (~0) + Bool swapbuffers_wait; Bool has_relaxed_fencing; |