diff options
author | Jakob Bornecrantz <[email protected]> | 2009-10-27 17:35:06 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-10-27 17:40:55 +0100 |
commit | 8a1f239ca9ccb61cd6713d1138e24492c84163c5 (patch) | |
tree | 7b70bb5d2cb8349f05fdfd4de572029011fc919d /src/gallium | |
parent | 50e113e375b4ecfdf5b60ccce7bbcdb1c5f2ca11 (diff) |
st/xorg: Adopt to new dirty clip rect type
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/state_trackers/xorg/xorg_driver.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gallium/state_trackers/xorg/xorg_driver.c b/src/gallium/state_trackers/xorg/xorg_driver.c index 847647c1e4d..26cf2dd7723 100644 --- a/src/gallium/state_trackers/xorg/xorg_driver.c +++ b/src/gallium/state_trackers/xorg/xorg_driver.c @@ -484,11 +484,12 @@ static void xorgBlockHandler(int i, pointer blockData, pointer pTimeout, BoxPtr rect = REGION_RECTS(dirty); int i; + /* XXX no need for copy? */ for (i = 0; i < num_cliprects; i++, rect++) { - clip[i].x = rect->x1; - clip[i].y = rect->y1; - clip[i].width = rect->x2 - rect->x1; - clip[i].height = rect->y2 - rect->y1; + clip[i].x1 = rect->x1; + clip[i].y1 = rect->y1; + clip[i].x2 = rect->x2; + clip[i].y2 = rect->y2; } /* TODO query connector property to see if this is needed */ |