gdiplus: Implement playback for EmfPlusRecordTypeSetCompositingQuality.
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
10a80b8c1b
commit
024750b182
|
@ -1836,6 +1836,10 @@ GpStatus WINGDIPAPI GdipPlayMetafileRecord(GDIPCONST GpMetafile *metafile,
|
||||||
{
|
{
|
||||||
return GdipSetPixelOffsetMode(real_metafile->playback_graphics, (flags >> 8) & 0xf);
|
return GdipSetPixelOffsetMode(real_metafile->playback_graphics, (flags >> 8) & 0xf);
|
||||||
}
|
}
|
||||||
|
case EmfPlusRecordTypeSetCompositingQuality:
|
||||||
|
{
|
||||||
|
return GdipSetCompositingQuality(real_metafile->playback_graphics, (flags >> 8) & 0xf);
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
FIXME("Not implemented for record type %x\n", recordType);
|
FIXME("Not implemented for record type %x\n", recordType);
|
||||||
return NotImplemented;
|
return NotImplemented;
|
||||||
|
|
Loading…
Reference in New Issue