diff options
Diffstat (limited to 'hw/xwin/winfont.c')
-rw-r--r-- | hw/xwin/winfont.c | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/hw/xwin/winfont.c b/hw/xwin/winfont.c index af3e90da5..7bcbce1c7 100644 --- a/hw/xwin/winfont.c +++ b/hw/xwin/winfont.c @@ -37,44 +37,46 @@ /* See Porting Layer Definition - p. 32 */ /* See mfb/mfbfont.c - mfbRealizeFont() - which is empty :) */ Bool -winRealizeFontNativeGDI (ScreenPtr pScreen, FontPtr pFont) +winRealizeFontNativeGDI(ScreenPtr pScreen, FontPtr pFont) { - BOOL fResult = TRUE; - winScreenPriv(pScreen); - + BOOL fResult = TRUE; + + winScreenPriv(pScreen); + #if CYGDEBUG - winTrace ("winRealizeFont (%p, %p)\n", pScreen, pFont); + winTrace("winRealizeFont (%p, %p)\n", pScreen, pFont); #endif - WIN_UNWRAP(RealizeFont); - if (pScreen->RealizeFont) - fResult = (*pScreen->RealizeFont) (pScreen, pFont); - WIN_WRAP(RealizeFont, winRealizeFontNativeGDI); - - return fResult; + WIN_UNWRAP(RealizeFont); + if (pScreen->RealizeFont) + fResult = (*pScreen->RealizeFont) (pScreen, pFont); + WIN_WRAP(RealizeFont, winRealizeFontNativeGDI); + + return fResult; } /* See Porting Layer Definition - p. 32 */ /* See mfb/mfbfont.c - mfbUnrealizeFont() - which is empty :) */ Bool -winUnrealizeFontNativeGDI (ScreenPtr pScreen, FontPtr pFont) +winUnrealizeFontNativeGDI(ScreenPtr pScreen, FontPtr pFont) { - BOOL fResult = TRUE; - winScreenPriv(pScreen); - + BOOL fResult = TRUE; + + winScreenPriv(pScreen); + #if CYGDEBUG - winTrace ("winUnrealizeFont (%p, %p)\n", pScreen, pFont); + winTrace("winUnrealizeFont (%p, %p)\n", pScreen, pFont); #endif - WIN_UNWRAP(UnrealizeFont); - if (pScreen->UnrealizeFont) - fResult = (*pScreen->UnrealizeFont) (pScreen, pFont); - WIN_WRAP(UnrealizeFont, winUnrealizeFontNativeGDI); - - return fResult; + WIN_UNWRAP(UnrealizeFont); + if (pScreen->UnrealizeFont) + fResult = (*pScreen->UnrealizeFont) (pScreen, pFont); + WIN_WRAP(UnrealizeFont, winUnrealizeFontNativeGDI); + + return fResult; #if CYGDEBUG - winDebug ("winUnrealizeFont()\n"); + winDebug("winUnrealizeFont()\n"); #endif - return TRUE; + return TRUE; } #endif |