Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: src/core/SkBitmapProcState.h

Issue 773753002: Add SSSE3 acceleration for S32_D16_filter_DXDY (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix build failure without SSSE3 Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/opts/SkBitmapProcState_opts_SSSE3.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | src/opts/SkBitmapProcState_opts_SSSE3.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698