Commit 024750b1 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

gdiplus: Implement playback for EmfPlusRecordTypeSetCompositingQuality.

parent 10a80b8c
......@@ -1836,6 +1836,10 @@ GpStatus WINGDIPAPI GdipPlayMetafileRecord(GDIPCONST GpMetafile *metafile,
{
return GdipSetPixelOffsetMode(real_metafile->playback_graphics, (flags >> 8) & 0xf);
}
case EmfPlusRecordTypeSetCompositingQuality:
{
return GdipSetCompositingQuality(real_metafile->playback_graphics, (flags >> 8) & 0xf);
}
default:
FIXME("Not implemented for record type %x\n", recordType);
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