1 /*
2  * Copyright 2013 The Android Open Source Project
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 SkMorphology_opts_SSE2_DEFINED
9 #define SkMorphology_opts_SSE2_DEFINED
10 
11 #include "SkColor.h"
12 
13 void SkDilateX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
14                     int width, int height, int srcStride, int dstStride);
15 void SkDilateY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
16                     int width, int height, int srcStride, int dstStride);
17 void SkErodeX_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
18                    int width, int height, int srcStride, int dstStride);
19 void SkErodeY_SSE2(const SkPMColor* src, SkPMColor* dst, int radius,
20                    int width, int height, int srcStride, int dstStride);
21 
22 #endif
23