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

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: added shadowParams info to debug string 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..6071c9626d563ea8178782a385015e98ffeed83a 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 SkShadowParams& sParams) override;
#else
void onDrawShadowedPicture(const SkPicture*,
const SkMatrix*,
- const SkPaint*);
+ const SkPaint*,
+ const SkShadowParams& sParams);
#endif
void onDrawAnnotation(const SkRect&, const char[], SkData*) override;
« src/core/SkCanvas.cpp ('K') | « src/core/SkRecordDraw.cpp ('k') | src/core/SkRecorder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698