/* | |
* Copyright 2014 Google Inc. | |
* | |
* Use of this source code is governed by a BSD-style license that can be | |
* found in the LICENSE file. | |
*/ | |
#ifndef SkBlurTypes_DEFINED | |
#define SkBlurTypes_DEFINED | |
enum SkBlurStyle : int { | |
kNormal_SkBlurStyle, //!< fuzzy inside and outside | |
kSolid_SkBlurStyle, //!< solid inside, fuzzy outside | |
kOuter_SkBlurStyle, //!< nothing inside, fuzzy outside | |
kInner_SkBlurStyle, //!< fuzzy inside, nothing outside | |
kLastEnum_SkBlurStyle = kInner_SkBlurStyle, | |
}; | |
#endif |