aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkPM4fPriv.h
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2016-01-29 05:22:59 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-29 05:22:59 -0800
commitfbc1e296b2e98dc76de533a2bb45d9ccc8c2498f (patch)
treef0f5e0a5d9b34519a0f5c9774ea316f4e0efe76c /src/core/SkPM4fPriv.h
parentaa9cb62901075e9d2858353cb041e5e6d4719614 (diff)
starter procs for blending with pm4f
curr/maxrss loops min median mean max stddev samples config bench 8/8 MB 4 87.1µs 91µs 89.8µs 92µs 2% ▇▇▇▇█▇▅▁▁▁ nonrendering xfer4f_srcover_N_opaque_linear 9/9 MB 2 196µs 196µs 215µs 383µs 27% ▁▁▁▁█▁▁▁▁▁ nonrendering xfer4f_srcover_N_opaque_srgb 9/9 MB 1 313µs 313µs 313µs 313µs 0% ▁▄▅▅▅▂████ nonrendering xfer4f_srcover_N_alpha_linear 9/9 MB 1 580µs 580µs 582µs 602µs 1% ▁▁▁▁▁▁▂▁▁█ nonrendering xfer4f_srcover_N_alpha_srgb 9/9 MB 23 13.1µs 13.1µs 13.1µs 13.1µs 0% ▆▄▄█▂▂▂▁▂▁ nonrendering xfer4f_srcover_1_opaque_linear 9/9 MB 23 13.2µs 13.2µs 13.2µs 13.2µs 0% █▄▂▁▃▁▂▂▂▂ nonrendering xfer4f_srcover_1_opaque_srgb 9/9 MB 2 178µs 183µs 183µs 185µs 1% ▇▇▇█▇▇▇▇▇▁ nonrendering xfer4f_srcover_1_alpha_linear 9/9 MB 1 517µs 517µs 517µs 517µs 0% ▇█▄▃▄▁▂▁▂▄ nonrendering xfer4f_srcover_1_alpha_srgb BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1642703003 TBR= landing now so these incremental types/functions can be used to collaborate with herb's work. nothing is active at this point Review URL: https://codereview.chromium.org/1642703003
Diffstat (limited to 'src/core/SkPM4fPriv.h')
-rw-r--r--src/core/SkPM4fPriv.h121
1 files changed, 121 insertions, 0 deletions
diff --git a/src/core/SkPM4fPriv.h b/src/core/SkPM4fPriv.h
new file mode 100644
index 0000000000..a4cec5c449
--- /dev/null
+++ b/src/core/SkPM4fPriv.h
@@ -0,0 +1,121 @@
+/*
+ * Copyright 2016 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "SkColorPriv.h"
+#include "SkNx.h"
+
+static inline float get_alpha(const Sk4f& f4) {
+ return f4.kth<SkPM4f::A>();
+}
+
+static inline Sk4f set_alpha(const Sk4f& f4, float alpha) {
+ static_assert(3 == SkPM4f::A, "");
+ return Sk4f(f4.kth<0>(), f4.kth<1>(), f4.kth<2>(), alpha);
+}
+
+static inline uint32_t to_4b(const Sk4f& f4) {
+ uint32_t b4;
+ SkNx_cast<uint8_t>(f4).store((uint8_t*)&b4);
+ return b4;
+}
+
+static inline Sk4f to_4f(uint32_t b4) {
+ return SkNx_cast<float>(Sk4b::Load((const uint8_t*)&b4));
+}
+
+static inline Sk4f s2l(const Sk4f& s4) {
+ return set_alpha(s4 * s4, get_alpha(s4));
+}
+
+static inline Sk4f l2s(const Sk4f& l4) {
+ return set_alpha(l4.rsqrt1() * l4, get_alpha(l4));
+}
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+static inline Sk4f Sk4f_fromL32(uint32_t src) {
+ return to_4f(src) * Sk4f(1.0f/255);
+}
+
+static inline Sk4f Sk4f_fromS32(uint32_t src) {
+ return s2l(to_4f(src) * Sk4f(1.0f/255));
+}
+
+static inline uint32_t Sk4f_toL32(const Sk4f& x4) {
+ return to_4b(x4 * Sk4f(255) + Sk4f(0.5f));
+}
+
+static inline uint32_t Sk4f_toS32(const Sk4f& x4) {
+ return to_4b(l2s(x4) * Sk4f(255) + Sk4f(0.5f));
+}
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
+static Sk4f unit_to_l255_round(const SkPM4f& pm4) {
+ return Sk4f::Load(pm4.fVec) * Sk4f(255) + Sk4f(0.5f);
+}
+
+static Sk4f unit_to_s255_round(const SkPM4f& pm4) {
+ return l2s(Sk4f::Load(pm4.fVec)) * Sk4f(255) + Sk4f(0.5f);
+}
+
+static inline void SkPM4f_l32_src_mode(SkPMColor dst[], const SkPM4f src[], int count) {
+ for (int i = 0; i < (count >> 2); ++i) {
+ SkASSERT(src[0].isUnit());
+ SkASSERT(src[1].isUnit());
+ SkASSERT(src[2].isUnit());
+ SkASSERT(src[3].isUnit());
+ Sk4f_ToBytes((uint8_t*)dst,
+ unit_to_l255_round(src[0]), unit_to_l255_round(src[1]),
+ unit_to_l255_round(src[2]), unit_to_l255_round(src[3]));
+ src += 4;
+ dst += 4;
+ }
+ count &= 3;
+ for (int i = 0; i < count; ++i) {
+ SkASSERT(src[i].isUnit());
+ SkNx_cast<uint8_t>(unit_to_l255_round(src[i])).store((uint8_t*)&dst[i]);
+ }
+}
+
+static inline void SkPM4f_l32_srcover_mode(SkPMColor dst[], const SkPM4f src[], int count) {
+ for (int i = 0; i < count; ++i) {
+ SkASSERT(src[i].isUnit());
+ Sk4f s4 = Sk4f::Load(src[i].fVec);
+ Sk4f d4 = Sk4f_fromL32(dst[i]);
+ dst[i] = Sk4f_toL32(s4 + d4 * Sk4f(1 - get_alpha(s4)));
+ }
+}
+
+static inline void SkPM4f_s32_src_mode(SkPMColor dst[], const SkPM4f src[], int count) {
+ for (int i = 0; i < (count >> 2); ++i) {
+ SkASSERT(src[0].isUnit());
+ SkASSERT(src[1].isUnit());
+ SkASSERT(src[2].isUnit());
+ SkASSERT(src[3].isUnit());
+ Sk4f_ToBytes((uint8_t*)dst,
+ unit_to_s255_round(src[0]), unit_to_s255_round(src[1]),
+ unit_to_s255_round(src[2]), unit_to_s255_round(src[3]));
+ src += 4;
+ dst += 4;
+ }
+ count &= 3;
+ for (int i = 0; i < count; ++i) {
+ SkASSERT(src[i].isUnit());
+ SkNx_cast<uint8_t>(unit_to_s255_round(src[i])).store((uint8_t*)&dst[i]);
+ }
+}
+
+static inline void SkPM4f_s32_srcover_mode(SkPMColor dst[], const SkPM4f src[], int count) {
+ for (int i = 0; i < count; ++i) {
+ SkASSERT(src[i].isUnit());
+ Sk4f s4 = Sk4f::Load(src[i].fVec);
+ Sk4f d4 = Sk4f_fromS32(dst[i]);
+ dst[i] = Sk4f_toS32(s4 + d4 * Sk4f(1 - get_alpha(s4)));
+ }
+}
+