From: Jakob Bornecrantz Date: Tue, 27 Oct 2009 16:35:06 +0000 (+0100) Subject: st/xorg: Adopt to new dirty clip rect type X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8a1f239ca9ccb61cd6713d1138e24492c84163c5;p=mesa.git st/xorg: Adopt to new dirty clip rect type --- 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 */