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

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: removed extra comments 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..eb7e3ff85f8d81a0e2d636d96b8740808bc1289b 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*,
+ SkShadowType sType) override;
jvanverth1 2016/08/15 16:37:17 const &
vjiaoblack 2016/08/15 17:43:31 Done.
vjiaoblack 2016/08/15 17:43:31 Done.
#else
void onDrawShadowedPicture(const SkPicture*,
const SkMatrix*,
- const SkPaint*);
+ const SkPaint*,
+ SkShadowType sType);
jvanverth1 2016/08/15 16:37:17 const &
vjiaoblack 2016/08/15 17:43:31 Done.
#endif
void onDrawAnnotation(const SkRect&, const char[], SkData*) override;

Powered by Google App Engine
This is Rietveld 408576698