Dmitry Timoshkov : gdi32: Print status of the hinting support in the debug log.
Module: wine Branch: master Commit: 101785d1a99e62814df3358e5a3c739c69158de0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=101785d1a99e62814df3358e5a... Author: Dmitry Timoshkov <dmitry(a)codeweavers.com> Date: Thu Jan 11 16:42:06 2007 +0800 gdi32: Print status of the hinting support in the debug log. --- dlls/gdi32/freetype.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c index 0e5d7e6..bb58646 100644 --- a/dlls/gdi32/freetype.c +++ b/dlls/gdi32/freetype.c @@ -4435,7 +4435,10 @@ BOOL WINAPI GetRasterizerCaps( LPRASTERI static int hinting = -1; if(hinting == -1) + { hinting = is_hinting_enabled(); + TRACE("hinting is %senabled\n", hinting ? "" : "NOT "); + } lprs->nSize = sizeof(RASTERIZER_STATUS); lprs->wFlags = TT_AVAILABLE | TT_ENABLED | (hinting ? WINE_TT_HINTER_ENABLED : 0);
participants (1)
-
Alexandre Julliard