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

Unified Diff: samplecode/SampleStrokePath.cpp

Issue 253833002: move common blur types into central header (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase Created 6 years, 8 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
« no previous file with comments | « samplecode/SampleSlides.cpp ('k') | samplecode/SampleTextAlpha.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samplecode/SampleStrokePath.cpp
diff --git a/samplecode/SampleStrokePath.cpp b/samplecode/SampleStrokePath.cpp
index ce6a010347658b024f1b7ec691cca96011b8d1c1..452651268f0c9aa7b216081f49a1327a37d24481 100644
--- a/samplecode/SampleStrokePath.cpp
+++ b/samplecode/SampleStrokePath.cpp
@@ -160,11 +160,11 @@ protected:
paint.setColor(SK_ColorWHITE);
canvas->translate(10, 30);
- static const SkBlurMaskFilter::BlurStyle gStyle[] = {
- SkBlurMaskFilter::kNormal_BlurStyle,
- SkBlurMaskFilter::kInner_BlurStyle,
- SkBlurMaskFilter::kOuter_BlurStyle,
- SkBlurMaskFilter::kSolid_BlurStyle,
+ static const SkBlurStyle gStyle[] = {
+ kNormal_SkBlurStyle,
+ kInner_SkBlurStyle,
+ kOuter_SkBlurStyle,
+ kSolid_SkBlurStyle,
};
for (int x = 0; x < 5; x++) {
SkMaskFilter* mf;
« no previous file with comments | « samplecode/SampleSlides.cpp ('k') | samplecode/SampleTextAlpha.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698