gdiplus: Implement playback for EmfPlusRecordTypeSetInterpolationMode.
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
024750b182
commit
071d7c3fbe
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue