[xorg-commit-diffs] xc/programs/Xserver/hw/xwin winengine.c, 1.1.4.1.2.9, 1.1.4.1.2.10

Harold L Hunt II xorg-commit at pdx.freedesktop.org
Fri Apr 9 22:07:55 PDT 2004


Committed by: harold

Update of /cvs/xorg/xc/programs/Xserver/hw/xwin
In directory pdx:/tmp/cvs-serv22257

Modified Files:
      Tag: CYGWIN
	winengine.c 
Log Message:
Oops, fix ShadowGDI being forced when it doesn't need to be.

Index: winengine.c
===================================================================
RCS file: /cvs/xorg/xc/programs/Xserver/hw/xwin/winengine.c,v
retrieving revision 1.1.4.1.2.9
retrieving revision 1.1.4.1.2.10
diff -u -d -r1.1.4.1.2.9 -r1.1.4.1.2.10
--- a/winengine.c	26 Mar 2004 20:39:17 -0000	1.1.4.1.2.9
+++ b/winengine.c	10 Apr 2004 05:07:52 -0000	1.1.4.1.2.10
@@ -184,12 +184,16 @@
     }
 
   /* ShadowGDI is the only engine that supports Multi Window Mode */
-  if (TRUE
+  if (
 #ifdef XWIN_MULTIWINDOWEXTWM
-      || pScreenInfo->fMWExtWM
+      pScreenInfo->fMWExtWM
+#else
+      FALSE
 #endif
 #ifdef XWIN_MULTIWINDOW
       || pScreenInfo->fMultiWindow
+#else
+      || FALSE
 #endif
       )
     {




More information about the xorg-commit-diffs mailing list