diff options
| author | Michel Dänzer <michel@tungstengraphics.com> | 2006-08-31 18:33:04 +0200 | 
|---|---|---|
| committer | Michel Dänzer <michel@tungstengraphics.com> | 2006-09-28 15:41:36 +0200 | 
| commit | c2bdb76814755c9ac6e66a8815f23af0fe4f3a91 (patch) | |
| tree | 56e3c33c9272981e09590096a6c09d9d2829f8f2 | |
| parent | 84b38b63f05e04ade8b1ddfb770047fd86de0d64 (diff) | |
Add SAREA fileds for determining which pipe to sync window buffer swaps to.
| -rw-r--r-- | shared-core/i915_drm.h | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/shared-core/i915_drm.h b/shared-core/i915_drm.h index 3a39d531..358b11e2 100644 --- a/shared-core/i915_drm.h +++ b/shared-core/i915_drm.h @@ -104,6 +104,15 @@ typedef struct _drm_i915_sarea {  	unsigned int depth_tiled;  	unsigned int rotated_tiled;  	unsigned int rotated2_tiled; + +	int pipeA_x; +	int pipeA_y; +	int pipeA_w; +	int pipeA_h; +	int pipeB_x; +	int pipeB_y; +	int pipeB_w; +	int pipeB_h;  } drm_i915_sarea_t;  /* Flags for perf_boxes  | 
