gdiplus: Implement playback for EmfPlusRecordTypeSetPixelOffsetMode.

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:
Nikolay Sivov 2017-09-18 10:42:44 +03:00 committed by Alexandre Julliard
parent 985cf6731c
commit 10a80b8c1b
1 changed files with 4 additions and 0 deletions

View File

@ -1832,6 +1832,10 @@ GpStatus WINGDIPAPI GdipPlayMetafileRecord(GDIPCONST GpMetafile *metafile,
break;
}
case EmfPlusRecordTypeSetPixelOffsetMode:
{
return GdipSetPixelOffsetMode(real_metafile->playback_graphics, (flags >> 8) & 0xf);
}
default:
FIXME("Not implemented for record type %x\n", recordType);
return NotImplemented;