Skia
2DGraphicsLibrary
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SkBlurTypes.h
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,
15  kSolid_SkBlurStyle,
16  kOuter_SkBlurStyle,
17  kInner_SkBlurStyle,
18 
19  kLastEnum_SkBlurStyle = kInner_SkBlurStyle
20 };
21 
22 enum SkBlurQuality {
23  kLow_SkBlurQuality,
24  kHigh_SkBlurQuality,
25 
26  kLastEnum_SkBlurQuality
27 };
28 
29 #endif