Commit 4b028bb0 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

gdiplus/metafile: Support playback for EmfPlusRecordTypeSetAntiAliasMode.

parent 6010b52a
...@@ -1848,6 +1848,10 @@ GpStatus WINGDIPAPI GdipPlayMetafileRecord(GDIPCONST GpMetafile *metafile, ...@@ -1848,6 +1848,10 @@ GpStatus WINGDIPAPI GdipPlayMetafileRecord(GDIPCONST GpMetafile *metafile,
{ {
return GdipSetTextRenderingHint(real_metafile->playback_graphics, flags & 0xff); return GdipSetTextRenderingHint(real_metafile->playback_graphics, flags & 0xff);
} }
case EmfPlusRecordTypeSetAntiAliasMode:
{
return GdipSetSmoothingMode(real_metafile->playback_graphics, (flags >> 1) & 0xff);
}
default: default:
FIXME("Not implemented for record type %x\n", recordType); FIXME("Not implemented for record type %x\n", recordType);
return NotImplemented; return NotImplemented;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment