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

Side by Side Diff: src/animator/SkDrawEmboss.cpp

Issue 21835004: Blur refactoring (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Removed unneeded #includes 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/animator/SkDrawEmboss.h ('k') | src/core/SkPicture.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #include "SkDrawEmboss.h" 10 #include "SkDrawEmboss.h"
11 11
12 #if SK_USE_CONDENSED_INFO == 0 12 #if SK_USE_CONDENSED_INFO == 0
13 13
14 const SkMemberInfo SkDrawEmboss::fInfo[] = { 14 const SkMemberInfo SkDrawEmboss::fInfo[] = {
15 SK_MEMBER(ambient, Float), 15 SK_MEMBER(fAmbient, Float),
16 SK_MEMBER_ARRAY(direction, Float), 16 SK_MEMBER_ARRAY(fDirection, Float),
17 SK_MEMBER(radius, Float), 17 SK_MEMBER(fSigma, Float),
18 SK_MEMBER(specular, Float) 18 SK_MEMBER(fSpecular, Float)
19 }; 19 };
20 20
21 #endif 21 #endif
22 22
23 DEFINE_GET_MEMBER(SkDrawEmboss); 23 DEFINE_GET_MEMBER(SkDrawEmboss);
24 24
25 SkDrawEmboss::SkDrawEmboss() : radius(-1) { 25 SkDrawEmboss::SkDrawEmboss() : fSigma(-1) {
26 direction.setCount(3); 26 fDirection.setCount(3);
27 } 27 }
28 28
29 SkMaskFilter* SkDrawEmboss::getMaskFilter() { 29 SkMaskFilter* SkDrawEmboss::getMaskFilter() {
30 if (radius < 0 || direction.count() !=3) 30 if (fSigma < 0 || fDirection.count() !=3)
31 return NULL; 31 return NULL;
32 return SkBlurMaskFilter::CreateEmboss(direction.begin(), ambient, specular, radius); 32 return SkBlurMaskFilter::CreateEmboss(fSigma, fDirection.begin(),
33 fAmbient, fSpecular);
33 } 34 }
OLDNEW
« no previous file with comments | « src/animator/SkDrawEmboss.h ('k') | src/core/SkPicture.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698