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

Unified Diff: src/gpu/GrClipMaskManager.h

Issue 23926019: Stateful PathRenderer implementation (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: clean up Created 7 years, 3 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: src/gpu/GrClipMaskManager.h
===================================================================
--- src/gpu/GrClipMaskManager.h (revision 11314)
+++ src/gpu/GrClipMaskManager.h (working copy)
@@ -128,15 +128,18 @@
bool useSWOnlyPath(const GrReducedClip::ElementList& elements);
+ // Draws a filled clip path into the target alpha mask
+ bool drawFilledPath(GrTexture* target, GrPathRenderer* pathRenderer, bool isAA);
+
// Draws a clip element into the target alpha mask. The caller should have already setup the
- // desired blend operation. Optionally if the caller already selected a path renderer it can
- // be passed. Otherwise the function will select one if the element is a path.
- bool drawElement(GrTexture* target, const SkClipStack::Element*, GrPathRenderer* = NULL);
+ // desired blend operation.
+ bool drawElement(GrTexture* target, const SkClipStack::Element* element);
// Determines whether it is possible to draw the element to both the stencil buffer and the
// alpha mask simultaneously. If so and the element is a path a compatible path renderer is
// also returned.
- bool canStencilAndDrawElement(GrTexture* target, const SkClipStack::Element*, GrPathRenderer**);
+ bool canStencilAndDrawElement(GrTexture* target, const SkClipStack::Element*,
+ GrPathRenderer** pr);
void mergeMask(GrTexture* dstMask,
GrTexture* srcMask,

Powered by Google App Engine
This is Rietveld 408576698