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

Vincent Povirk madewokherd at gmail.com
Mon Sep 18 10:31:40 CDT 2017


Signed-off-by: Vincent Povirk <vincent at codeweavers.com>

On Mon, Sep 18, 2017 at 2:42 AM, Nikolay Sivov <nsivov at codeweavers.com> wrote:
> 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