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