diff options
author | Eric Anholt <eric@anholt.net> | 2007-11-16 16:43:45 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-11-16 17:29:30 -0800 |
commit | f00a64999c197e6a96e65fd00f64224a6f22c9fa (patch) | |
tree | 48c1171ce1b7a7eaa1396ac61069819f5b5c4be2 /src/mesa/drivers/dri/intel/intel_screen.h | |
parent | 9b461d4d029497dd6f71e60220849e1b66bb8cf5 (diff) |
[intel] Add 965 support to shared intel_blit.c
This requires that regions grow a marker of whether they are tiled or not,
because fence (surface) registers are ignored by the 965 2D engine.
Diffstat (limited to 'src/mesa/drivers/dri/intel/intel_screen.h')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_screen.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_screen.h b/src/mesa/drivers/dri/intel/intel_screen.h index 26197b760a..3a1a969b23 100644 --- a/src/mesa/drivers/dri/intel/intel_screen.h +++ b/src/mesa/drivers/dri/intel/intel_screen.h @@ -45,6 +45,12 @@ typedef struct int offset; /* from start of video mem, in bytes */ int pitch; /* row stride, in bytes */ unsigned int bo_handle; /* buffer object id if available, or -1 */ + /** + * Flags if the region is tiled. + * + * Not included is Y versus X tiling. + */ + GLboolean tiled; } intelRegion; typedef struct |