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

Unified Diff: src/core/SkRecorder.h

Issue 2224163005: Made shadows blurry (thru implementing variance mapping) (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Moved SkShadowType to SkCanvas Created 4 years, 4 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/core/SkRecorder.h
diff --git a/src/core/SkRecorder.h b/src/core/SkRecorder.h
index 6da38241230f91febdc06a4d802ed6b8fe3d5bab..38441bdb5826577795dc8983222b0928fc7ac75e 100644
--- a/src/core/SkRecorder.h
+++ b/src/core/SkRecorder.h
@@ -137,11 +137,13 @@ public:
#ifdef SK_EXPERIMENTAL_SHADOWING
void onDrawShadowedPicture(const SkPicture*,
const SkMatrix*,
- const SkPaint*) override;
+ const SkPaint*,
+ const SkShadowType& sType) override;
#else
void onDrawShadowedPicture(const SkPicture*,
const SkMatrix*,
- const SkPaint*);
+ const SkPaint*,
+ const SkShadowType& sType);
#endif
void onDrawAnnotation(const SkRect&, const char[], SkData*) override;

Powered by Google App Engine
This is Rietveld 408576698