From 00c8250ff87cbc615b39051c228339d712aa7c79 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Mon, 21 Feb 2011 18:20:01 +0800 Subject: [PATCH] gdi32: Add dumping of child GDI font cache. --- dlls/gdi32/freetype.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c index 81c8e462811..e0a93f8823f 100644 --- a/dlls/gdi32/freetype.c +++ b/dlls/gdi32/freetype.c @@ -3880,6 +3880,13 @@ static void dump_gdi_font_list(void) TRACE("gdiFont=%p %s %d\n", gdiFont, debugstr_w(gdiFont->font_desc.lf.lfFaceName), gdiFont->font_desc.lf.lfHeight); } + + TRACE("---------- Child gdiFont Cache ----------\n"); + LIST_FOR_EACH(elem_ptr, &child_font_list) { + gdiFont = LIST_ENTRY(elem_ptr, struct tagGdiFont, entry); + TRACE("gdiFont=%p %s %d\n", + gdiFont, debugstr_w(gdiFont->font_desc.lf.lfFaceName), gdiFont->font_desc.lf.lfHeight); + } } /*************************************************************