Module: wine Branch: master Commit: 6010b52a2e7c231665cda5f934ba31abea1aedfd URL: http://source.winehq.org/git/wine.git/?a=commit;h=6010b52a2e7c231665cda5f934...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Tue Oct 10 21:24:40 2017 +0300
gdiplus/metafile: Support playback for EmfPlusRecordTypeSetTextRenderingHint.
Signed-off-by: Nikolay Sivov nsivov@codeweavers.com Signed-off-by: Vincent Povirk vincent@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/gdiplus/metafile.c | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/dlls/gdiplus/metafile.c b/dlls/gdiplus/metafile.c index 350925e..e4e61ee 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;