[PATCH 3/3] gdiplus: Implement playback for EmfPlusRecordTypeSetInterpolationMode

Nikolay Sivov nsivov at codeweavers.com
Mon Sep 18 02:42:46 CDT 2017


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 dlls/gdiplus/metafile.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dlls/gdiplus/metafile.c b/dlls/gdiplus/metafile.c
index fbaee283fd..d135e362e0 100644
--- a/dlls/gdiplus/metafile.c
+++ b/dlls/gdiplus/metafile.c
@@ -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;
-- 
2.14.1




More information about the wine-patches mailing list