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

Side by Side Diff: src/opts/SkBlitRow_opts_SSE4.h

Issue 923523002: Replace SSE optimization of Color32A_D565 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Removed SSE4 version Created 5 years, 10 months 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
OLDNEW
1 /* 1 /*
2 * Copyright 2014 The Android Open Source Project 2 * Copyright 2014 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 SkBlitRow_opts_SSE4_DEFINED 8 #ifndef SkBlitRow_opts_SSE4_DEFINED
9 #define SkBlitRow_opts_SSE4_DEFINED 9 #define SkBlitRow_opts_SSE4_DEFINED
10 10
11 #include "SkBlitRow.h" 11 #include "SkBlitRow.h"
12 12
13 void S32A_Opaque_BlitRow32_SSE4(SkPMColor* SK_RESTRICT, 13 void S32A_Opaque_BlitRow32_SSE4(SkPMColor* SK_RESTRICT,
14 const SkPMColor* SK_RESTRICT, 14 const SkPMColor* SK_RESTRICT,
15 int count, 15 int count,
16 U8CPU alpha); 16 U8CPU alpha);
17
18 void Color32A_D565_SSE4(uint16_t dst[], SkPMColor src, int count, int x, int y);
19
20 #endif 17 #endif
21 18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698