[3/5] gdiplus: Add fixme's for unimplemented path gradient features.

Vincent Povirk madewokherd at gmail.com
Tue Mar 13 14:42:24 CDT 2012


-------------- next part --------------
From 926dddf432669447a6d12ce6107b5e1570212cc8 Mon Sep 17 00:00:00 2001
From: Vincent Povirk <vincent at codeweavers.com>
Date: Wed, 22 Feb 2012 15:24:20 -0600
Subject: [PATCH 3/8] gdiplus: Add fixme's for unimplemented path gradient
 features.

---
 dlls/gdiplus/graphics.c |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 56a61a7..67361a2 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -1193,6 +1193,20 @@ static GpStatus brush_fill_pixels(GpGraphics *graphics, GpBrush *brush,
         INT x, y;
         ARGB outer_color=0xffffffff;
 
+        if (fill->focus.X != 0.0 || fill->focus.Y != 0.0)
+        {
+            static int once;
+            if (!once++)
+                FIXME("path gradient focus not implemented\n");
+        }
+
+        if (fill->gamma)
+        {
+            static int once;
+            if (!once++)
+                FIXME("path gradient gamma correction not implemented\n");
+        }
+
         stat = GdipClonePath(fill->path, &flat_path);
 
         if (stat != Ok)
-- 
1.7.9


More information about the wine-patches mailing list