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>
This commit is contained in:
parent
30ba465786
commit
6010b52a2e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue