Alexandre Julliard : winex11: Merge the contents of clipping. c into graphics.c.

Alexandre Julliard julliard at winehq.org
Tue Apr 29 08:54:16 CDT 2008


Module: wine
Branch: master
Commit: 497714a01ff2c6404c5cb48a1a2427d2e4d59541
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=497714a01ff2c6404c5cb48a1a2427d2e4d59541

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Apr 28 23:17:10 2008 +0200

winex11: Merge the contents of clipping.c into graphics.c.

---

 dlls/winex11.drv/Makefile.in |    1 -
 dlls/winex11.drv/clipping.c  |  122 ------------------------------------------
 dlls/winex11.drv/graphics.c  |   99 ++++++++++++++++++++++++++++++++++
 3 files changed, 99 insertions(+), 123 deletions(-)

diff --git a/dlls/winex11.drv/Makefile.in b/dlls/winex11.drv/Makefile.in
index 20bdd56..0bafb33 100644
--- a/dlls/winex11.drv/Makefile.in
+++ b/dlls/winex11.drv/Makefile.in
@@ -13,7 +13,6 @@ C_SRCS = \
 	bitmap.c \
 	brush.c \
 	clipboard.c \
-	clipping.c \
 	codepage.c \
 	desktop.c \
 	dib.c \
diff --git a/dlls/winex11.drv/clipping.c b/dlls/winex11.drv/clipping.c
deleted file mode 100644
index 5cf806f..0000000
--- a/dlls/winex11.drv/clipping.c
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
- * X11DRV clipping functions
- *
- * Copyright 1998 Huw Davies
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "config.h"
-
-#include <stdio.h>
-
-#include "x11drv.h"
-
-/***********************************************************************
- *           X11DRV_GetRegionData
- *
- * Calls GetRegionData on the given region and converts the rectangle
- * array to XRectangle format. The returned buffer must be freed by
- * caller using HeapFree(GetProcessHeap(),...).
- * If hdc_lptodp is not 0, the rectangles are converted through LPtoDP.
- */
-RGNDATA *X11DRV_GetRegionData( HRGN hrgn, HDC hdc_lptodp )
-{
-    RGNDATA *data;
-    DWORD size;
-    unsigned int i;
-    RECT *rect, tmp;
-    XRectangle *xrect;
-
-    if (!(size = GetRegionData( hrgn, 0, NULL ))) return NULL;
-    if (sizeof(XRectangle) > sizeof(RECT))
-    {
-        /* add extra size for XRectangle array */
-        int count = (size - sizeof(RGNDATAHEADER)) / sizeof(RECT);
-        size += count * (sizeof(XRectangle) - sizeof(RECT));
-    }
-    if (!(data = HeapAlloc( GetProcessHeap(), 0, size ))) return NULL;
-    if (!GetRegionData( hrgn, size, data ))
-    {
-        HeapFree( GetProcessHeap(), 0, data );
-        return NULL;
-    }
-
-    rect = (RECT *)data->Buffer;
-    xrect = (XRectangle *)data->Buffer;
-    if (hdc_lptodp)  /* map to device coordinates */
-    {
-        LPtoDP( hdc_lptodp, (POINT *)rect, data->rdh.nCount * 2 );
-        for (i = 0; i < data->rdh.nCount; i++)
-        {
-            if (rect[i].right < rect[i].left)
-            {
-                INT tmp = rect[i].right;
-                rect[i].right = rect[i].left;
-                rect[i].left = tmp;
-            }
-            if (rect[i].bottom < rect[i].top)
-            {
-                INT tmp = rect[i].bottom;
-                rect[i].bottom = rect[i].top;
-                rect[i].top = tmp;
-            }
-        }
-    }
-
-    if (sizeof(XRectangle) > sizeof(RECT))
-    {
-        int j;
-        /* need to start from the end */
-        for (j = data->rdh.nCount-1; j >= 0; j--)
-        {
-            tmp = rect[j];
-            xrect[j].x      = tmp.left;
-            xrect[j].y      = tmp.top;
-            xrect[j].width  = tmp.right - tmp.left;
-            xrect[j].height = tmp.bottom - tmp.top;
-        }
-    }
-    else
-    {
-        for (i = 0; i < data->rdh.nCount; i++)
-        {
-            tmp = rect[i];
-            xrect[i].x      = tmp.left;
-            xrect[i].y      = tmp.top;
-            xrect[i].width  = tmp.right - tmp.left;
-            xrect[i].height = tmp.bottom - tmp.top;
-        }
-    }
-    return data;
-}
-
-
-/***********************************************************************
- *           X11DRV_SetDeviceClipping
- */
-void X11DRV_SetDeviceClipping( X11DRV_PDEVICE *physDev, HRGN vis_rgn, HRGN clip_rgn )
-{
-    RGNDATA *data;
-
-    CombineRgn( physDev->region, vis_rgn, clip_rgn, clip_rgn ? RGN_AND : RGN_COPY );
-    if (!(data = X11DRV_GetRegionData( physDev->region, 0 ))) return;
-
-    wine_tsx11_lock();
-    XSetClipRectangles( gdi_display, physDev->gc, physDev->dc_rect.left, physDev->dc_rect.top,
-                        (XRectangle *)data->Buffer, data->rdh.nCount, YXBanded );
-    wine_tsx11_unlock();
-    HeapFree( GetProcessHeap(), 0, data );
-}
diff --git a/dlls/winex11.drv/graphics.c b/dlls/winex11.drv/graphics.c
index af623ac..197ee21 100644
--- a/dlls/winex11.drv/graphics.c
+++ b/dlls/winex11.drv/graphics.c
@@ -2,6 +2,7 @@
  * X11 graphics driver graphics functions
  *
  * Copyright 1993,1994 Alexandre Julliard
+ * Copyright 1998 Huw Davies
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -72,6 +73,104 @@ const int X11DRV_XROPfunction[16] =
 
 
 /***********************************************************************
+ *           X11DRV_GetRegionData
+ *
+ * Calls GetRegionData on the given region and converts the rectangle
+ * array to XRectangle format. The returned buffer must be freed by
+ * caller using HeapFree(GetProcessHeap(),...).
+ * If hdc_lptodp is not 0, the rectangles are converted through LPtoDP.
+ */
+RGNDATA *X11DRV_GetRegionData( HRGN hrgn, HDC hdc_lptodp )
+{
+    RGNDATA *data;
+    DWORD size;
+    unsigned int i;
+    RECT *rect, tmp;
+    XRectangle *xrect;
+
+    if (!(size = GetRegionData( hrgn, 0, NULL ))) return NULL;
+    if (sizeof(XRectangle) > sizeof(RECT))
+    {
+        /* add extra size for XRectangle array */
+        int count = (size - sizeof(RGNDATAHEADER)) / sizeof(RECT);
+        size += count * (sizeof(XRectangle) - sizeof(RECT));
+    }
+    if (!(data = HeapAlloc( GetProcessHeap(), 0, size ))) return NULL;
+    if (!GetRegionData( hrgn, size, data ))
+    {
+        HeapFree( GetProcessHeap(), 0, data );
+        return NULL;
+    }
+
+    rect = (RECT *)data->Buffer;
+    xrect = (XRectangle *)data->Buffer;
+    if (hdc_lptodp)  /* map to device coordinates */
+    {
+        LPtoDP( hdc_lptodp, (POINT *)rect, data->rdh.nCount * 2 );
+        for (i = 0; i < data->rdh.nCount; i++)
+        {
+            if (rect[i].right < rect[i].left)
+            {
+                INT tmp = rect[i].right;
+                rect[i].right = rect[i].left;
+                rect[i].left = tmp;
+            }
+            if (rect[i].bottom < rect[i].top)
+            {
+                INT tmp = rect[i].bottom;
+                rect[i].bottom = rect[i].top;
+                rect[i].top = tmp;
+            }
+        }
+    }
+
+    if (sizeof(XRectangle) > sizeof(RECT))
+    {
+        int j;
+        /* need to start from the end */
+        for (j = data->rdh.nCount-1; j >= 0; j--)
+        {
+            tmp = rect[j];
+            xrect[j].x      = tmp.left;
+            xrect[j].y      = tmp.top;
+            xrect[j].width  = tmp.right - tmp.left;
+            xrect[j].height = tmp.bottom - tmp.top;
+        }
+    }
+    else
+    {
+        for (i = 0; i < data->rdh.nCount; i++)
+        {
+            tmp = rect[i];
+            xrect[i].x      = tmp.left;
+            xrect[i].y      = tmp.top;
+            xrect[i].width  = tmp.right - tmp.left;
+            xrect[i].height = tmp.bottom - tmp.top;
+        }
+    }
+    return data;
+}
+
+
+/***********************************************************************
+ *           X11DRV_SetDeviceClipping
+ */
+void X11DRV_SetDeviceClipping( X11DRV_PDEVICE *physDev, HRGN vis_rgn, HRGN clip_rgn )
+{
+    RGNDATA *data;
+
+    CombineRgn( physDev->region, vis_rgn, clip_rgn, clip_rgn ? RGN_AND : RGN_COPY );
+    if (!(data = X11DRV_GetRegionData( physDev->region, 0 ))) return;
+
+    wine_tsx11_lock();
+    XSetClipRectangles( gdi_display, physDev->gc, physDev->dc_rect.left, physDev->dc_rect.top,
+                        (XRectangle *)data->Buffer, data->rdh.nCount, YXBanded );
+    wine_tsx11_unlock();
+    HeapFree( GetProcessHeap(), 0, data );
+}
+
+
+/***********************************************************************
  *           X11DRV_SetupGCForPatBlt
  *
  * Setup the GC for a PatBlt operation using current brush.




More information about the wine-cvs mailing list