Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: src/core/SkColorFilter.cpp

Issue 2091923003: Fix incorrect swizzle on BGRA platforms in filterColor4f path (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/core/SkPM4f.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
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 #include "SkColorFilter.h" 8 #include "SkColorFilter.h"
9 #include "SkReadBuffer.h" 9 #include "SkReadBuffer.h"
10 #include "SkRefCnt.h" 10 #include "SkRefCnt.h"
(...skipping 25 matching lines...) Expand all
36 return nullptr; 36 return nullptr;
37 } 37 }
38 #endif 38 #endif
39 39
40 void SkColorFilter::filterSpan4f(const SkPM4f src[], int count, SkPM4f result[]) const { 40 void SkColorFilter::filterSpan4f(const SkPM4f src[], int count, SkPM4f result[]) const {
41 const int N = 128; 41 const int N = 128;
42 SkPMColor tmp[N]; 42 SkPMColor tmp[N];
43 while (count > 0) { 43 while (count > 0) {
44 int n = SkTMin(count, N); 44 int n = SkTMin(count, N);
45 for (int i = 0; i < n; ++i) { 45 for (int i = 0; i < n; ++i) {
46 SkNx_cast<uint8_t>(Sk4f::Load(src[i].fVec) * Sk4f(255) + Sk4f(0.5f)) .store(&tmp[i]); 46 tmp[i] = src[i].toPMColor();
47 } 47 }
48 this->filterSpan(tmp, n, tmp); 48 this->filterSpan(tmp, n, tmp);
49 for (int i = 0; i < n; ++i) { 49 for (int i = 0; i < n; ++i) {
50 result[i] = SkPM4f::FromPMColor(tmp[i]); 50 result[i] = SkPM4f::FromPMColor(tmp[i]);
51 } 51 }
52 src += n; 52 src += n;
53 result += n; 53 result += n;
54 count -= n; 54 count -= n;
55 } 55 }
56 } 56 }
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 } 178 }
179 return sk_sp<SkColorFilter>(new SkComposeColorFilter(std::move(outer), std:: move(inner),count)); 179 return sk_sp<SkColorFilter>(new SkComposeColorFilter(std::move(outer), std:: move(inner),count));
180 } 180 }
181 181
182 #include "SkModeColorFilter.h" 182 #include "SkModeColorFilter.h"
183 183
184 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkColorFilter) 184 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkColorFilter)
185 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkComposeColorFilter) 185 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkComposeColorFilter)
186 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkModeColorFilter) 186 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkModeColorFilter)
187 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END 187 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END
OLDNEW
« no previous file with comments | « no previous file | src/core/SkPM4f.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698