| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2007 The Android Open Source Project | 2 * Copyright 2007 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SkBitmapProcState_DEFINED | 8 #ifndef SkBitmapProcState_DEFINED |
| 9 #define SkBitmapProcState_DEFINED | 9 #define SkBitmapProcState_DEFINED |
| 10 | 10 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 void ClampX_ClampY_filter_scale(const SkBitmapProcState& s, uint32_t xy[], | 197 void ClampX_ClampY_filter_scale(const SkBitmapProcState& s, uint32_t xy[], |
| 198 int count, int x, int y); | 198 int count, int x, int y); |
| 199 void ClampX_ClampY_nofilter_scale(const SkBitmapProcState& s, uint32_t xy[], | 199 void ClampX_ClampY_nofilter_scale(const SkBitmapProcState& s, uint32_t xy[], |
| 200 int count, int x, int y); | 200 int count, int x, int y); |
| 201 void ClampX_ClampY_filter_affine(const SkBitmapProcState& s, | 201 void ClampX_ClampY_filter_affine(const SkBitmapProcState& s, |
| 202 uint32_t xy[], int count, int x, int y); | 202 uint32_t xy[], int count, int x, int y); |
| 203 void ClampX_ClampY_nofilter_affine(const SkBitmapProcState& s, | 203 void ClampX_ClampY_nofilter_affine(const SkBitmapProcState& s, |
| 204 uint32_t xy[], int count, int x, int y); | 204 uint32_t xy[], int count, int x, int y); |
| 205 void S32_D16_filter_DX(const SkBitmapProcState& s, | 205 void S32_D16_filter_DX(const SkBitmapProcState& s, |
| 206 const uint32_t* xy, int count, uint16_t* colors); | 206 const uint32_t* xy, int count, uint16_t* colors); |
| 207 void S32_D16_filter_DXDY(const SkBitmapProcState& s, |
| 208 const uint32_t* xy, int count, uint16_t* colors); |
| 207 | 209 |
| 208 void highQualityFilter32(const SkBitmapProcState &s, int x, int y, | 210 void highQualityFilter32(const SkBitmapProcState &s, int x, int y, |
| 209 SkPMColor *SK_RESTRICT colors, int count); | 211 SkPMColor *SK_RESTRICT colors, int count); |
| 210 void highQualityFilter16(const SkBitmapProcState &s, int x, int y, | 212 void highQualityFilter16(const SkBitmapProcState &s, int x, int y, |
| 211 uint16_t *SK_RESTRICT colors, int count); | 213 uint16_t *SK_RESTRICT colors, int count); |
| 212 | 214 |
| 213 | 215 |
| 214 #endif | 216 #endif |
| OLD | NEW |