[xorg-commit-diffs] xc/programs/Xserver/hw/xwin winvalargs.c,
1.1.2.3, 1.1.2.4 winengine.c, 1.1.4.1.2.10, 1.1.4.1.2.11
Alexander Gottwald
xorg-commit at pdx.freedesktop.org
Fri Apr 23 06:19:56 EST 2004
- Previous message: [xorg-commit-diffs] xc/programs/Xserver/hw/xwin winglobals.c,
1.1.2.19, 1.1.2.20 winprocarg.c, 1.1.2.16,
1.1.2.17 winscrinit.c, 1.1.4.1.2.16, 1.1.4.1.2.17
- Next message: [xorg-commit-diffs] xc/programs/Xserver/GL/windows Imakefile,
1.1.2.5, 1.1.2.6 glwindows.h, 1.1.2.2, 1.1.2.3 indirect.c,
1.1.2.21, 1.1.2.22 wincursor.c, 1.1.2.3, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: ago
Update of /cvs/xorg/xc/programs/Xserver/hw/xwin
In directory pdx:/tmp/cvs-serv11716
Modified Files:
Tag: CYGWIN
winvalargs.c winengine.c
Log Message:
use winDebug and winErrorFVerb instead of ErrorF to set explicit loglevels
Index: winvalargs.c
===================================================================
RCS file: /cvs/xorg/xc/programs/Xserver/hw/xwin/Attic/winvalargs.c,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- a/winvalargs.c 10 Apr 2004 06:18:29 -0000 1.1.2.3
+++ b/winvalargs.c 22 Apr 2004 20:19:53 -0000 1.1.2.4
@@ -173,7 +173,7 @@
}
}
- ErrorF ("winValidateArgs - Returning.\n");
+ winDebug ("winValidateArgs - Returning.\n");
return TRUE;
}
Index: winengine.c
===================================================================
RCS file: /cvs/xorg/xc/programs/Xserver/hw/xwin/winengine.c,v
retrieving revision 1.1.4.1.2.10
retrieving revision 1.1.4.1.2.11
diff -u -d -r1.1.4.1.2.10 -r1.1.4.1.2.11
--- a/winengine.c 10 Apr 2004 05:07:52 -0000 1.1.4.1.2.10
+++ b/winengine.c 22 Apr 2004 20:19:53 -0000 1.1.4.1.2.11
@@ -175,7 +175,7 @@
/* ShadowGDI is the only engine that supports windowed PseudoColor */
if (dwBPP == 8 && !pScreenInfo->fFullScreen)
{
- ErrorF ("winSetEngine - Windowed && PseudoColor => ShadowGDI\n");
+ winErrorFVerb (2, "winSetEngine - Windowed && PseudoColor => ShadowGDI\n");
pScreenInfo->dwEngine = WIN_SERVER_SHADOW_GDI;
/* Set engine function pointers */
@@ -197,7 +197,7 @@
#endif
)
{
- ErrorF ("winSetEngine - Multi Window or Rootless => ShadowGDI\n");
+ winErrorFVerb (2, "winSetEngine - Multi Window or Rootless => ShadowGDI\n");
pScreenInfo->dwEngine = WIN_SERVER_SHADOW_GDI;
/* Set engine function pointers */
@@ -208,7 +208,7 @@
/* If the user's choice is supported, we'll use that */
if (g_dwEnginesSupported & pScreenInfo->dwEnginePreferred)
{
- ErrorF ("winSetEngine - Using user's preference: %d\n",
+ winErrorFVerb (2, "winSetEngine - Using user's preference: %d\n",
(int) pScreenInfo->dwEnginePreferred);
pScreenInfo->dwEngine = pScreenInfo->dwEnginePreferred;
@@ -243,7 +243,7 @@
/* ShadowDDNL has good performance, so why not */
if (g_dwEnginesSupported & WIN_SERVER_SHADOW_DDNL)
{
- ErrorF ("winSetEngine - Using Shadow DirectDraw NonLocking\n");
+ winErrorFVerb (2, "winSetEngine - Using Shadow DirectDraw NonLocking\n");
pScreenInfo->dwEngine = WIN_SERVER_SHADOW_DDNL;
/* Set engine function pointers */
@@ -254,7 +254,7 @@
/* ShadowDD is next in line */
if (g_dwEnginesSupported & WIN_SERVER_SHADOW_DD)
{
- ErrorF ("winSetEngine - Using Shadow DirectDraw\n");
+ winErrorFVerb (2, "winSetEngine - Using Shadow DirectDraw\n");
pScreenInfo->dwEngine = WIN_SERVER_SHADOW_DD;
/* Set engine function pointers */
@@ -265,7 +265,7 @@
/* ShadowGDI is next in line */
if (g_dwEnginesSupported & WIN_SERVER_SHADOW_GDI)
{
- ErrorF ("winSetEngine - Using Shadow GDI DIB\n");
+ winErrorFVerb (2, "winSetEngine - Using Shadow GDI DIB\n");
pScreenInfo->dwEngine = WIN_SERVER_SHADOW_GDI;
/* Set engine function pointers */
- Previous message: [xorg-commit-diffs] xc/programs/Xserver/hw/xwin winglobals.c,
1.1.2.19, 1.1.2.20 winprocarg.c, 1.1.2.16,
1.1.2.17 winscrinit.c, 1.1.4.1.2.16, 1.1.4.1.2.17
- Next message: [xorg-commit-diffs] xc/programs/Xserver/GL/windows Imakefile,
1.1.2.5, 1.1.2.6 glwindows.h, 1.1.2.2, 1.1.2.3 indirect.c,
1.1.2.21, 1.1.2.22 wincursor.c, 1.1.2.3, NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the xorg-commit-diffs
mailing list