diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2006-08-31 18:35:10 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2006-09-27 15:06:43 +0200 |
commit | fe691953f08b4d299295f91450412404ba42810b (patch) | |
tree | bfc58d4dbcb6d16a05f5e5b43a256762ebe8e6e2 /src/i830_common.h | |
parent | 06c5f7bd076e9ba4b925e061a40b837714bc8267 (diff) |
Store viewport limits of both pipes in SAREA.
This allows DRI clients to determine which pipe they should synchronize buffer
swaps of each window to.
Diffstat (limited to 'src/i830_common.h')
-rw-r--r-- | src/i830_common.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/i830_common.h b/src/i830_common.h index c3ef4cde..79455b61 100644 --- a/src/i830_common.h +++ b/src/i830_common.h @@ -121,6 +121,15 @@ typedef struct { 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; } drmI830Sarea; /* Flags for perf_boxes |