Commit 071d7c3f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

gdiplus: Implement playback for EmfPlusRecordTypeSetInterpolationMode.

parent 024750b1
......@@ -1840,6 +1840,10 @@ GpStatus WINGDIPAPI GdipPlayMetafileRecord(GDIPCONST GpMetafile *metafile,
{
return GdipSetCompositingQuality(real_metafile->playback_graphics, (flags >> 8) & 0xf);
}
case EmfPlusRecordTypeSetInterpolationMode:
{
return GdipSetInterpolationMode(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