aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar reed <reed@chromium.org>2015-03-30 13:40:30 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-03-30 13:40:30 -0700
commit005b84ec1c3122885d154d84e29a5deed273d7b6 (patch)
tree0f5108a625defbf5aa240ef3a65d96de95ee7df3 /src
parent5c9fa2844c4f97b9358d547f947372f680c68dd1 (diff)
clamp matrix-translate before converting to pmcolor
Diffstat (limited to 'src')
-rw-r--r--src/effects/SkColorMatrixFilter.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/effects/SkColorMatrixFilter.cpp b/src/effects/SkColorMatrixFilter.cpp
index 7c86e2e046..c2d4e48c75 100644
--- a/src/effects/SkColorMatrixFilter.cpp
+++ b/src/effects/SkColorMatrixFilter.cpp
@@ -272,6 +272,10 @@ static Sk4s unpremul(const SkPMFloat& pm) {
return Sk4s(pm) * Sk4s(scale, scale, scale, 1);
}
+static Sk4f clamp_0_255(const Sk4f& value) {
+ return Sk4f::Max(Sk4f::Min(value, Sk4f(255)), Sk4f(0));
+}
+
void SkColorMatrixFilter::filterSpan(const SkPMColor src[], int count, SkPMColor dst[]) const {
Proc proc = fProc;
if (NULL == proc) {
@@ -294,7 +298,8 @@ void SkColorMatrixFilter::filterSpan(const SkPMColor src[], int count, SkPMColor
const Sk4s c3 = Sk4s::Load(fTranspose + 12);
const Sk4s c4 = Sk4s::Load(fTranspose + 16); // translates
- SkPMColor matrix_translate_pmcolor = SkPMFloat(premul(c4)).clamped();
+ // todo: we could cache this in the constructor...
+ SkPMColor matrix_translate_pmcolor = SkPMFloat(premul(clamp_0_255(c4))).clamped();
for (int i = 0; i < count; i++) {
const SkPMColor src_c = src[i];
@@ -317,11 +322,8 @@ void SkColorMatrixFilter::filterSpan(const SkPMColor src[], int count, SkPMColor
// apply matrix
Sk4s dst4 = c0 * r4 + c1 * g4 + c2 * b4 + c3 * a4 + c4;
- // pin before re-premul (convention for color-matrix???)
- dst4 = Sk4s::Max(Sk4s(0), Sk4s::Min(Sk4s(255), dst4));
-
- // re-premul and write
- dst[i] = SkPMFloat(premul(dst4)).get();
+ // clamp, re-premul, and write
+ dst[i] = SkPMFloat(premul(clamp_0_255(dst4))).get();
}
} else {
const State& state = fState;