Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1528)

Unified Diff: Source/core/rendering/svg/SVGRenderSupport.h

Issue 638933002: Introduce SVGPaintServer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Disambiguate. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/svg/SVGRenderSupport.h
diff --git a/Source/core/rendering/svg/SVGRenderSupport.h b/Source/core/rendering/svg/SVGRenderSupport.h
index 7419f4a7fc36e44992afe18d2c1b15cc0a2f0083..d3133030fb7e564239cc0a2c06860b9e9ab788b2 100644
--- a/Source/core/rendering/svg/SVGRenderSupport.h
+++ b/Source/core/rendering/svg/SVGRenderSupport.h
@@ -30,6 +30,7 @@ class AffineTransform;
class FloatPoint;
class FloatRect;
class GraphicsContext;
+class GraphicsContextStateSaver;
class PaintInvalidationState;
class LayoutRect;
struct PaintInfo;
@@ -84,6 +85,11 @@ public:
static void applyStrokeStyleToContext(GraphicsContext*, const RenderStyle*, const RenderObject*);
static void applyStrokeStyleToStrokeData(StrokeData*, const RenderStyle*, const RenderObject*);
+ // Update the GC state (on |stateSaver.context()|) for painting |renderer|
+ // using |style|. |resourceModeFlags| is used to decide between fill/stroke.
+ // Previous state will be saved (if needed) using |stateSaver|.
+ static bool updateGraphicsContext(GraphicsContextStateSaver&, RenderStyle*, RenderObject&, unsigned resourceModeFlags);
+
// Fill and/or stroke the provided |path|.
static void fillOrStrokePath(GraphicsContext*, unsigned short resourceMode, const Path&);

Powered by Google App Engine
This is Rietveld 408576698