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

Side by Side Diff: src/effects/SkMagnifierImageFilter.cpp

Issue 2163343002: Adding color space to SkSpecialImage (Closed) Base URL: https://skia.googlesource.com/skia.git@colorspace-on-image
Patch Set: Fix compile after rebase 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/effects/SkLightingImageFilter.cpp ('k') | src/effects/SkMatrixConvolutionImageFilter.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 2012 The Android Open Source Project 2 * Copyright 2012 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 "SkMagnifierImageFilter.h" 8 #include "SkMagnifierImageFilter.h"
9 9
10 #include "SkBitmap.h" 10 #include "SkBitmap.h"
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 fSrcRect.x() / inputText ure->width(), 330 fSrcRect.x() / inputText ure->width(),
331 yOffset / inputTexture-> height(), 331 yOffset / inputTexture-> height(),
332 invXZoom, 332 invXZoom,
333 invYZoom, 333 invYZoom,
334 bounds.width() * invInse t, 334 bounds.width() * invInse t,
335 bounds.height() * invIns et)); 335 bounds.height() * invIns et));
336 if (!fp) { 336 if (!fp) {
337 return nullptr; 337 return nullptr;
338 } 338 }
339 339
340 return DrawWithFP(context, std::move(fp), bounds); 340 return DrawWithFP(context, std::move(fp), bounds, sk_ref_sp(input->getCo lorSpace()));
341 } 341 }
342 #endif 342 #endif
343 343
344 SkBitmap inputBM; 344 SkBitmap inputBM;
345 345
346 if (!input->getROPixels(&inputBM)) { 346 if (!input->getROPixels(&inputBM)) {
347 return nullptr; 347 return nullptr;
348 } 348 }
349 349
350 if ((inputBM.colorType() != kN32_SkColorType) || 350 if ((inputBM.colorType() != kN32_SkColorType) ||
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 414
415 #ifndef SK_IGNORE_TO_STRING 415 #ifndef SK_IGNORE_TO_STRING
416 void SkMagnifierImageFilter::toString(SkString* str) const { 416 void SkMagnifierImageFilter::toString(SkString* str) const {
417 str->appendf("SkMagnifierImageFilter: ("); 417 str->appendf("SkMagnifierImageFilter: (");
418 str->appendf("src: (%f,%f,%f,%f) ", 418 str->appendf("src: (%f,%f,%f,%f) ",
419 fSrcRect.fLeft, fSrcRect.fTop, fSrcRect.fRight, fSrcRect.fBotto m); 419 fSrcRect.fLeft, fSrcRect.fTop, fSrcRect.fRight, fSrcRect.fBotto m);
420 str->appendf("inset: %f", fInset); 420 str->appendf("inset: %f", fInset);
421 str->append(")"); 421 str->append(")");
422 } 422 }
423 #endif 423 #endif
OLDNEW
« no previous file with comments | « src/effects/SkLightingImageFilter.cpp ('k') | src/effects/SkMatrixConvolutionImageFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698