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

Side by Side Diff: src/gpu/GrTextureToYUVPlanes.cpp

Issue 2154753003: Introduce GrColorSpaceXform, for gamut conversion on textures (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: More progress & refactoring Created 4 years, 5 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 | « src/gpu/GrTextureParamsAdjuster.cpp ('k') | src/gpu/SkGpuDevice.cpp » ('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 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 #include "GrTextureToYUVPlanes.h" 8 #include "GrTextureToYUVPlanes.h"
9 #include "effects/GrSimpleTextureEffect.h" 9 #include "effects/GrSimpleTextureEffect.h"
10 #include "effects/GrYUVEffect.h" 10 #include "effects/GrYUVEffect.h"
(...skipping 14 matching lines...) Expand all
25 SkScalar xScale = SkIntToScalar(src->width()) / dstW / src->width(); 25 SkScalar xScale = SkIntToScalar(src->width()) / dstW / src->width();
26 SkScalar yScale = SkIntToScalar(src->height()) / dstH / src->height(); 26 SkScalar yScale = SkIntToScalar(src->height()) / dstH / src->height();
27 GrTextureParams::FilterMode filter; 27 GrTextureParams::FilterMode filter;
28 if (dstW == src->width() && dstW == src->height()) { 28 if (dstW == src->width() && dstW == src->height()) {
29 filter = GrTextureParams::kNone_FilterMode; 29 filter = GrTextureParams::kNone_FilterMode;
30 } else { 30 } else {
31 filter = GrTextureParams::kBilerp_FilterMode; 31 filter = GrTextureParams::kBilerp_FilterMode;
32 } 32 }
33 33
34 sk_sp<GrFragmentProcessor> fp( 34 sk_sp<GrFragmentProcessor> fp(
35 GrSimpleTextureEffect::Make(src, SkMatrix::MakeScale(xScale, yScale) , filter)); 35 GrSimpleTextureEffect::Make(src, nullptr, SkMatrix::MakeScale(xScale , yScale), filter));
36 if (!fp) { 36 if (!fp) {
37 return false; 37 return false;
38 } 38 }
39 fp = proc(std::move(fp), colorSpace); 39 fp = proc(std::move(fp), colorSpace);
40 if (!fp) { 40 if (!fp) {
41 return false; 41 return false;
42 } 42 }
43 GrPaint paint; 43 GrPaint paint;
44 paint.setPorterDuffXPFactory(SkXfermode::kSrc_Mode); 44 paint.setPorterDuffXPFactory(SkXfermode::kSrc_Mode);
45 paint.addColorFragmentProcessor(std::move(fp)); 45 paint.addColorFragmentProcessor(std::move(fp));
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 if (!tex->readPixels(0, 0, sizes[2].fWidth, sizes[2].fHeight, 221 if (!tex->readPixels(0, 0, sizes[2].fWidth, sizes[2].fHeight,
222 kAlpha_8_GrPixelConfig, planes[2], rowBytes [2])) { 222 kAlpha_8_GrPixelConfig, planes[2], rowBytes [2])) {
223 return false; 223 return false;
224 } 224 }
225 return true; 225 return true;
226 } 226 }
227 } 227 }
228 } 228 }
229 return false; 229 return false;
230 } 230 }
OLDNEW
« no previous file with comments | « src/gpu/GrTextureParamsAdjuster.cpp ('k') | src/gpu/SkGpuDevice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698