blob: 10c3dedd0f1b34f1d44712000e62eba282864d7c [file] [log] [blame]
mtkleind2ffd362015-05-12 06:11:21 -07001/*
2 * Copyright 2015 Google Inc.
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#include "SkUtils.h"
9
mtklein082e3292015-08-12 11:56:43 -070010namespace { // See Sk4px.h
11
mtkleind2ffd362015-05-12 06:11:21 -070012static_assert(sizeof(Sk4px) == 16, "This file uses memcpy / sk_memset32, so exact size matters.");
13
mtklein082e3292015-08-12 11:56:43 -070014inline Sk4px Sk4px::DupPMColor(SkPMColor px) {
mtklein059ac002015-06-22 10:39:38 -070015 Sk4px px4 = Sk16b();
16 sk_memset32((uint32_t*)&px4, px, 4);
17 return px4;
mtkleind2ffd362015-05-12 06:11:21 -070018}
19
mtklein082e3292015-08-12 11:56:43 -070020inline Sk4px Sk4px::Load4(const SkPMColor px[4]) {
mtkleind2ffd362015-05-12 06:11:21 -070021 Sk4px px4 = Sk16b();
22 memcpy(&px4, px, 16);
23 return px4;
24}
25
mtklein082e3292015-08-12 11:56:43 -070026inline Sk4px Sk4px::Load2(const SkPMColor px[2]) {
mtkleind2ffd362015-05-12 06:11:21 -070027 Sk4px px2 = Sk16b();
28 memcpy(&px2, px, 8);
29 return px2;
30}
31
mtklein082e3292015-08-12 11:56:43 -070032inline Sk4px Sk4px::Load1(const SkPMColor px[1]) {
mtkleind2ffd362015-05-12 06:11:21 -070033 Sk4px px1 = Sk16b();
34 memcpy(&px1, px, 4);
35 return px1;
36}
37
mtklein082e3292015-08-12 11:56:43 -070038inline void Sk4px::store4(SkPMColor px[4]) const { memcpy(px, this, 16); }
39inline void Sk4px::store2(SkPMColor px[2]) const { memcpy(px, this, 8); }
40inline void Sk4px::store1(SkPMColor px[1]) const { memcpy(px, this, 4); }
mtkleind2ffd362015-05-12 06:11:21 -070041
mtklein082e3292015-08-12 11:56:43 -070042inline Sk4px::Wide Sk4px::widenLo() const {
mtklein7c249e52016-02-21 10:54:19 -080043 return Sk16h((*this)[ 0], (*this)[ 1], (*this)[ 2], (*this)[ 3],
44 (*this)[ 4], (*this)[ 5], (*this)[ 6], (*this)[ 7],
45 (*this)[ 8], (*this)[ 9], (*this)[10], (*this)[11],
46 (*this)[12], (*this)[13], (*this)[14], (*this)[15]);
mtkleind2ffd362015-05-12 06:11:21 -070047}
48
mtklein082e3292015-08-12 11:56:43 -070049inline Sk4px::Wide Sk4px::widenHi() const { return this->widenLo() << 8; }
mtkleind2ffd362015-05-12 06:11:21 -070050
mtklein082e3292015-08-12 11:56:43 -070051inline Sk4px::Wide Sk4px::widenLoHi() const { return this->widenLo() + this->widenHi(); }
mtklein4be181e2015-07-14 10:54:19 -070052
mtklein082e3292015-08-12 11:56:43 -070053inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const {
mtkleind2ffd362015-05-12 06:11:21 -070054 return this->widenLo() * Sk4px(other).widenLo();
55}
56
mtklein082e3292015-08-12 11:56:43 -070057inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const {
mtkleind2ffd362015-05-12 06:11:21 -070058 Sk4px::Wide r = (*this + other) >> 8;
mtklein7c249e52016-02-21 10:54:19 -080059 return Sk16b(r[ 0], r[ 1], r[ 2], r[ 3],
60 r[ 4], r[ 5], r[ 6], r[ 7],
61 r[ 8], r[ 9], r[10], r[11],
62 r[12], r[13], r[14], r[15]);
mtkleind2ffd362015-05-12 06:11:21 -070063}
mtklein8a90edc2015-05-13 12:19:42 -070064
mtkleincbf4fba2015-11-17 14:19:52 -080065inline Sk4px Sk4px::Wide::div255() const {
66 // Calculated as ((x+128) + ((x+128)>>8)) >> 8.
67 auto v = *this + Sk16h(128);
68 return v.addNarrowHi(v>>8);
69}
70
mtklein082e3292015-08-12 11:56:43 -070071inline Sk4px Sk4px::alphas() const {
mtklein8a90edc2015-05-13 12:19:42 -070072 static_assert(SK_A32_SHIFT == 24, "This method assumes little-endian.");
mtklein7c249e52016-02-21 10:54:19 -080073 return Sk16b((*this)[ 3], (*this)[ 3], (*this)[ 3], (*this)[ 3],
74 (*this)[ 7], (*this)[ 7], (*this)[ 7], (*this)[ 7],
75 (*this)[11], (*this)[11], (*this)[11], (*this)[11],
76 (*this)[15], (*this)[15], (*this)[15], (*this)[15]);
mtklein8a90edc2015-05-13 12:19:42 -070077}
78
mtklein082e3292015-08-12 11:56:43 -070079inline Sk4px Sk4px::Load4Alphas(const SkAlpha a[4]) {
mtklein8a90edc2015-05-13 12:19:42 -070080 return Sk16b(a[0], a[0], a[0], a[0],
81 a[1], a[1], a[1], a[1],
82 a[2], a[2], a[2], a[2],
83 a[3], a[3], a[3], a[3]);
84}
85
mtklein082e3292015-08-12 11:56:43 -070086inline Sk4px Sk4px::Load2Alphas(const SkAlpha a[2]) {
mtklein8a90edc2015-05-13 12:19:42 -070087 return Sk16b(a[0], a[0], a[0], a[0],
88 a[1], a[1], a[1], a[1],
89 0,0,0,0,
90 0,0,0,0);
91}
mtklein0135a412015-05-15 10:36:21 -070092
mtklein082e3292015-08-12 11:56:43 -070093inline Sk4px Sk4px::zeroAlphas() const {
mtklein0135a412015-05-15 10:36:21 -070094 static_assert(SK_A32_SHIFT == 24, "This method assumes little-endian.");
mtklein7c249e52016-02-21 10:54:19 -080095 return Sk16b((*this)[ 0], (*this)[ 1], (*this)[ 2], 0,
96 (*this)[ 4], (*this)[ 5], (*this)[ 6], 0,
97 (*this)[ 8], (*this)[ 9], (*this)[10], 0,
98 (*this)[12], (*this)[13], (*this)[14], 0);
mtklein0135a412015-05-15 10:36:21 -070099}
100
mtklein082e3292015-08-12 11:56:43 -0700101inline Sk4px Sk4px::zeroColors() const {
mtklein0135a412015-05-15 10:36:21 -0700102 static_assert(SK_A32_SHIFT == 24, "This method assumes little-endian.");
mtklein7c249e52016-02-21 10:54:19 -0800103 return Sk16b(0,0,0, (*this)[ 3],
104 0,0,0, (*this)[ 7],
105 0,0,0, (*this)[11],
106 0,0,0, (*this)[15]);
mtklein0135a412015-05-15 10:36:21 -0700107}
108
mtklein082e3292015-08-12 11:56:43 -0700109} // namespace