gdi32: Add dumping of child GDI font cache.
This commit is contained in:
parent
cf6c76b3b4
commit
00c8250ff8
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
/*************************************************************
|
||||
|
|
Loading…
Reference in New Issue