From f2fabf77f9bc18448aed0e99a6d7d1d6c5c9c736 Mon Sep 17 00:00:00 2001 From: Andreas Holzammer Date: Mon, 20 Aug 2012 11:25:41 +0200 Subject: Fix freetype font rendering for Windows CE Windows CE does not have support for GetGlyphOutline. So addGlyphToPath will not work. QML uses it for their distance field rendering. One option to bypass this issue is to use freetype as rendering backend. Change-Id: I965254344945cbdad771a5d505fb61c1cc2087df Reviewed-by: Friedemann Kleint --- src/3rdparty/freetype/src/gzip/zutil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/3rdparty') diff --git a/src/3rdparty/freetype/src/gzip/zutil.h b/src/3rdparty/freetype/src/gzip/zutil.h index 8e3c69a9f0..9560b48203 100644 --- a/src/3rdparty/freetype/src/gzip/zutil.h +++ b/src/3rdparty/freetype/src/gzip/zutil.h @@ -182,7 +182,7 @@ typedef unsigned long ulg; #endif /* Diagnostic functions */ -#ifdef DEBUG +#if defined(DEBUG) && !defined(_WIN32_WCE) # include extern int z_verbose; extern void z_error OF((char *m)); -- cgit v1.2.3