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

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

Issue 289473009: Add SSE4 optimization of S32A_Opaque_Blitrow (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 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
(Empty)
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 SkBlitRow_opts_SSE4_DEFINED
9 #define SkBlitRow_opts_SSE4_DEFINED
10
11 #include "SkBlitRow.h"
12
13 #if !defined(_MSC_VER)
14 extern "C" void S32A_Opaque_BlitRow32_SSE4_asm(SkPMColor* SK_RESTRICT dst,
15 const SkPMColor* SK_RESTRICT src,
16 int count, U8CPU alpha);
17
18 extern "C" void S32A_Blend_BlitRow32_SSE4_asm(SkPMColor* SK_RESTRICT dst,
mtklein 2014/05/16 18:06:38 Remove until implemented?
henrik.smiding 2014/05/20 15:10:29 Done.
19 const SkPMColor* SK_RESTRICT src,
20 int count, U8CPU alpha);
21 #endif
22
23 #endif
24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698