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

Side by Side Diff: include/core/SkBlurTypes.h

Issue 253833002: move common blur types into central header (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase Created 6 years, 7 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 | « gyp/skia_for_chromium_defines.gypi ('k') | include/effects/SkBlurMaskFilter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkBlurTypes_DEFINED
9 #define SkBlurTypes_DEFINED
10
11 #include "SkTypes.h"
12
13 enum SkBlurStyle {
14 kNormal_SkBlurStyle, //!< fuzzy inside and outside
15 kSolid_SkBlurStyle, //!< solid inside, fuzzy outside
16 kOuter_SkBlurStyle, //!< nothing inside, fuzzy outside
17 kInner_SkBlurStyle, //!< fuzzy inside, nothing outside
18
19 kLastEnum_SkBlurStyle = kInner_SkBlurStyle
20 };
21
22 enum SkBlurQuality {
23 kLow_SkBlurQuality, //!< e.g. box filter
24 kHigh_SkBlurQuality, //!< e.g. 3-pass similar to gaussian
25
26 kLastEnum_SkBlurQuality
27 };
28
29 #endif
OLDNEW
« no previous file with comments | « gyp/skia_for_chromium_defines.gypi ('k') | include/effects/SkBlurMaskFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698