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

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

Issue 181293002: SSE2 implementation of S32_D565_Opaque_Dither (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | src/opts/SkBlitRow_opts_SSE2.cpp » ('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 /* 2 /*
3 * Copyright 2009 The Android Open Source Project 3 * Copyright 2009 The Android Open Source Project
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #include "SkBlitRow.h" 10 #include "SkBlitRow.h"
(...skipping 17 matching lines...) Expand all
28 SkColor color, int width, SkPMColor); 28 SkColor color, int width, SkPMColor);
29 void SkBlitLCD16OpaqueRow_SSE2(SkPMColor dst[], const uint16_t src[], 29 void SkBlitLCD16OpaqueRow_SSE2(SkPMColor dst[], const uint16_t src[],
30 SkColor color, int width, SkPMColor opaqueDst); 30 SkColor color, int width, SkPMColor opaqueDst);
31 31
32 void S32_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, 32 void S32_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst,
33 const SkPMColor* SK_RESTRICT src, int count, 33 const SkPMColor* SK_RESTRICT src, int count,
34 U8CPU alpha, int /*x*/, int /*y*/); 34 U8CPU alpha, int /*x*/, int /*y*/);
35 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, 35 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst,
36 const SkPMColor* SK_RESTRICT src, 36 const SkPMColor* SK_RESTRICT src,
37 int count, U8CPU alpha, int /*x*/, int /*y*/); 37 int count, U8CPU alpha, int /*x*/, int /*y*/);
38 void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst,
39 const SkPMColor* SK_RESTRICT src,
40 int count, U8CPU alpha, int x, int y);
OLDNEW
« no previous file with comments | « no previous file | src/opts/SkBlitRow_opts_SSE2.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698