mtklein | d2ffd36 | 2015-05-12 06:11:21 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Mike Klein | c33d614 | 2018-12-12 08:47:54 -0500 | [diff] [blame] | 10 | namespace { // NOLINT(google-build-namespaces) |
mtklein | 082e329 | 2015-08-12 11:56:43 -0700 | [diff] [blame] | 11 | |
Mike Klein | 7dfe6d9 | 2018-12-18 14:53:37 -0500 | [diff] [blame] | 12 | inline Sk4px::Wide Sk4px::widen() const { |
mtklein | 7c249e5 | 2016-02-21 10:54:19 -0800 | [diff] [blame] | 13 | return Sk16h((*this)[ 0], (*this)[ 1], (*this)[ 2], (*this)[ 3], |
| 14 | (*this)[ 4], (*this)[ 5], (*this)[ 6], (*this)[ 7], |
| 15 | (*this)[ 8], (*this)[ 9], (*this)[10], (*this)[11], |
| 16 | (*this)[12], (*this)[13], (*this)[14], (*this)[15]); |
mtklein | d2ffd36 | 2015-05-12 06:11:21 -0700 | [diff] [blame] | 17 | } |
| 18 | |
mtklein | 082e329 | 2015-08-12 11:56:43 -0700 | [diff] [blame] | 19 | inline Sk4px::Wide Sk4px::mulWiden(const Sk16b& other) const { |
Mike Klein | 7dfe6d9 | 2018-12-18 14:53:37 -0500 | [diff] [blame] | 20 | return this->widen() * Sk4px(other).widen(); |
mtklein | d2ffd36 | 2015-05-12 06:11:21 -0700 | [diff] [blame] | 21 | } |
| 22 | |
mtklein | 082e329 | 2015-08-12 11:56:43 -0700 | [diff] [blame] | 23 | inline Sk4px Sk4px::Wide::addNarrowHi(const Sk16h& other) const { |
mtklein | d2ffd36 | 2015-05-12 06:11:21 -0700 | [diff] [blame] | 24 | Sk4px::Wide r = (*this + other) >> 8; |
mtklein | 7c249e5 | 2016-02-21 10:54:19 -0800 | [diff] [blame] | 25 | return Sk16b(r[ 0], r[ 1], r[ 2], r[ 3], |
| 26 | r[ 4], r[ 5], r[ 6], r[ 7], |
| 27 | r[ 8], r[ 9], r[10], r[11], |
| 28 | r[12], r[13], r[14], r[15]); |
mtklein | d2ffd36 | 2015-05-12 06:11:21 -0700 | [diff] [blame] | 29 | } |
mtklein | 8a90edc | 2015-05-13 12:19:42 -0700 | [diff] [blame] | 30 | |
mtklein | cbf4fba | 2015-11-17 14:19:52 -0800 | [diff] [blame] | 31 | inline Sk4px Sk4px::Wide::div255() const { |
| 32 | // Calculated as ((x+128) + ((x+128)>>8)) >> 8. |
| 33 | auto v = *this + Sk16h(128); |
| 34 | return v.addNarrowHi(v>>8); |
| 35 | } |
| 36 | |
mtklein | 082e329 | 2015-08-12 11:56:43 -0700 | [diff] [blame] | 37 | inline Sk4px Sk4px::alphas() const { |
mtklein | 8a90edc | 2015-05-13 12:19:42 -0700 | [diff] [blame] | 38 | static_assert(SK_A32_SHIFT == 24, "This method assumes little-endian."); |
mtklein | 7c249e5 | 2016-02-21 10:54:19 -0800 | [diff] [blame] | 39 | return Sk16b((*this)[ 3], (*this)[ 3], (*this)[ 3], (*this)[ 3], |
| 40 | (*this)[ 7], (*this)[ 7], (*this)[ 7], (*this)[ 7], |
| 41 | (*this)[11], (*this)[11], (*this)[11], (*this)[11], |
| 42 | (*this)[15], (*this)[15], (*this)[15], (*this)[15]); |
mtklein | 8a90edc | 2015-05-13 12:19:42 -0700 | [diff] [blame] | 43 | } |
| 44 | |
mtklein | 082e329 | 2015-08-12 11:56:43 -0700 | [diff] [blame] | 45 | inline Sk4px Sk4px::Load4Alphas(const SkAlpha a[4]) { |
mtklein | 8a90edc | 2015-05-13 12:19:42 -0700 | [diff] [blame] | 46 | return Sk16b(a[0], a[0], a[0], a[0], |
| 47 | a[1], a[1], a[1], a[1], |
| 48 | a[2], a[2], a[2], a[2], |
| 49 | a[3], a[3], a[3], a[3]); |
| 50 | } |
| 51 | |
mtklein | 082e329 | 2015-08-12 11:56:43 -0700 | [diff] [blame] | 52 | inline Sk4px Sk4px::Load2Alphas(const SkAlpha a[2]) { |
mtklein | 8a90edc | 2015-05-13 12:19:42 -0700 | [diff] [blame] | 53 | return Sk16b(a[0], a[0], a[0], a[0], |
| 54 | a[1], a[1], a[1], a[1], |
| 55 | 0,0,0,0, |
| 56 | 0,0,0,0); |
| 57 | } |
mtklein | 0135a41 | 2015-05-15 10:36:21 -0700 | [diff] [blame] | 58 | |
mtklein | 082e329 | 2015-08-12 11:56:43 -0700 | [diff] [blame] | 59 | } // namespace |