OLD | NEW |
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 Loading... |
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, sk_ref_sp(input->getCo
lorSpace())); | 340 return DrawWithFP(context, std::move(fp), bounds, ctx.outputProperties()
); |
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 Loading... |
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 |
OLD | NEW |