michael@0: /* michael@0: * Copyright 2013 The Android Open Source Project michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: #ifndef SkMorphology_opts_DEFINED michael@0: #define SkMorphology_opts_DEFINED michael@0: michael@0: #include michael@0: michael@0: enum SkMorphologyProcType { michael@0: kDilateX_SkMorphologyProcType, michael@0: kDilateY_SkMorphologyProcType, michael@0: kErodeX_SkMorphologyProcType, michael@0: kErodeY_SkMorphologyProcType michael@0: }; michael@0: michael@0: SkMorphologyImageFilter::Proc SkMorphologyGetPlatformProc(SkMorphologyProcType type); michael@0: michael@0: #endif