From 6010b52a2e7c231665cda5f934ba31abea1aedfd Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Tue, 10 Oct 2017 21:24:40 +0300 Subject: [PATCH] gdiplus/metafile: Support playback for EmfPlusRecordTypeSetTextRenderingHint. Signed-off-by: Nikolay Sivov Signed-off-by: Vincent Povirk Signed-off-by: Alexandre Julliard --- dlls/gdiplus/metafile.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/gdiplus/metafile.c b/dlls/gdiplus/metafile.c index 350925eb159..e4e61eeca17 100644 --- a/dlls/gdiplus/metafile.c +++ b/dlls/gdiplus/metafile.c @@ -1844,6 +1844,10 @@ GpStatus WINGDIPAPI GdipPlayMetafileRecord(GDIPCONST GpMetafile *metafile, { return GdipSetInterpolationMode(real_metafile->playback_graphics, flags & 0xff); } + case EmfPlusRecordTypeSetTextRenderingHint: + { + return GdipSetTextRenderingHint(real_metafile->playback_graphics, flags & 0xff); + } default: FIXME("Not implemented for record type %x\n", recordType); return NotImplemented;