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/opts/SkColor_opts_SSE2.h

Issue 138163013: SSE2 implementation of S32A_D565_Opaque (Closed) Base URL: https://skia.googlesource.com/skia.git@SkSrcOver32To16SSE
Patch Set: handle 8 pixels at a time Created 6 years, 11 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 | « src/opts/SkBlitRow_opts_SSE2.cpp ('k') | src/opts/opts_check_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
(Empty)
1
2 /*
3 * Copyright 2014 The Android Open Source Project
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9
mtklein 2014/02/07 15:15:46 Can you add include guards? #ifndef SkColor_opts_
10 #include <emmintrin.h>
11
12 static inline __m128i SkMul16ShiftRound_SSE(__m128i a, __m128i b, int shift) {
13 __m128i prod = _mm_mullo_epi16(a, b);
14 prod = _mm_add_epi16(prod, _mm_set1_epi16(1 << (shift - 1)));
15 prod = _mm_add_epi16(prod, _mm_srli_epi16(prod, shift));
16 prod = _mm_srli_epi16(prod, shift);
17
18 return prod;
19 }
20
21 static inline __m128i SkPackRGB16_SSE(__m128i r, __m128i g, __m128i b) {
22 r = _mm_slli_epi16(r, SK_R16_SHIFT);
23 g = _mm_slli_epi16(g, SK_G16_SHIFT);
24 b = _mm_slli_epi16(b, SK_B16_SHIFT);
25
26 __m128i c = _mm_or_si128(r, g);
27 return _mm_or_si128(c, b);
28 }
OLDNEW
« no previous file with comments | « src/opts/SkBlitRow_opts_SSE2.cpp ('k') | src/opts/opts_check_SSE2.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698