| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SkPM4f_DEFINED | 8 #ifndef SkPM4f_DEFINED |
| 9 #define SkPM4f_DEFINED | 9 #define SkPM4f_DEFINED |
| 10 | 10 |
| 11 #include "SkColorPriv.h" | 11 #include "SkColorPriv.h" |
| 12 #include "SkNx.h" |
| 13 |
| 14 static inline Sk4f swizzle_rb(const Sk4f& x) { |
| 15 return SkNx_shuffle<2, 1, 0, 3>(x); |
| 16 } |
| 17 |
| 18 static inline Sk4f swizzle_rb_if_bgra(const Sk4f& x) { |
| 19 #ifdef SK_PMCOLOR_IS_BGRA |
| 20 return swizzle_rb(x); |
| 21 #else |
| 22 return x; |
| 23 #endif |
| 24 } |
| 12 | 25 |
| 13 /* | 26 /* |
| 14 * The float values are 0...1 premultiplied | 27 * The float values are 0...1 premultiplied in RGBA order (regardless of SkPMCo
lor order) |
| 15 */ | 28 */ |
| 16 struct SkPM4f { | 29 struct SkPM4f { |
| 17 enum { | 30 enum { |
| 18 A = SK_A32_SHIFT/8, | 31 R, G, B, A, |
| 19 R = SK_R32_SHIFT/8, | |
| 20 G = SK_G32_SHIFT/8, | |
| 21 B = SK_B32_SHIFT/8, | |
| 22 }; | 32 }; |
| 23 float fVec[4]; | 33 float fVec[4]; |
| 24 | 34 |
| 35 float r() const { return fVec[R]; } |
| 36 float g() const { return fVec[G]; } |
| 37 float b() const { return fVec[B]; } |
| 25 float a() const { return fVec[A]; } | 38 float a() const { return fVec[A]; } |
| 26 | 39 |
| 40 static SkPM4f From4f(const Sk4f& x) { |
| 41 SkPM4f pm; |
| 42 x.store(pm.fVec); |
| 43 return pm; |
| 44 } |
| 45 static SkPM4f FromF16(const uint16_t[4]); |
| 46 static SkPM4f FromPMColor(SkPMColor); |
| 47 |
| 48 Sk4f to4f() const { return Sk4f::Load(fVec); } |
| 49 Sk4f to4f_rgba() const { return this->to4f(); } |
| 50 Sk4f to4f_bgra() const { return swizzle_rb(this->to4f()); } |
| 51 Sk4f to4f_pmorder() const { return swizzle_rb_if_bgra(this->to4f()); } |
| 52 |
| 53 void toF16(uint16_t[4]) const; |
| 54 uint64_t toF16() const; // 4 float16 values packed into uint64_t |
| 55 |
| 27 SkColor4f unpremul() const; | 56 SkColor4f unpremul() const; |
| 28 | 57 |
| 29 static SkPM4f FromPMColor(SkPMColor); | |
| 30 | |
| 31 // half-float routines | |
| 32 void toF16(uint16_t[4]) const; | |
| 33 uint64_t toF16() const; // 4 float16 values packed into uint64_t | |
| 34 static SkPM4f FromF16(const uint16_t[4]); | |
| 35 | |
| 36 #ifdef SK_DEBUG | 58 #ifdef SK_DEBUG |
| 37 void assertIsUnit() const; | 59 void assertIsUnit() const; |
| 38 #else | 60 #else |
| 39 void assertIsUnit() const {} | 61 void assertIsUnit() const {} |
| 40 #endif | 62 #endif |
| 41 }; | 63 }; |
| 42 | 64 |
| 43 typedef SkPM4f (*SkXfermodeProc4f)(const SkPM4f& src, const SkPM4f& dst); | 65 typedef SkPM4f (*SkXfermodeProc4f)(const SkPM4f& src, const SkPM4f& dst); |
| 44 | 66 |
| 45 | |
| 46 #endif | 67 #endif |
| OLD | NEW |