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 "SkOffsetImageFilter.h" | 8 #include "SkOffsetImageFilter.h" |
9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset))
{ | 40 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset))
{ |
41 return false; | 41 return false; |
42 } | 42 } |
43 | 43 |
44 SkIRect bounds; | 44 SkIRect bounds; |
45 if (!this->applyCropRect(ctx, src, srcOffset, &bounds)) { | 45 if (!this->applyCropRect(ctx, src, srcOffset, &bounds)) { |
46 return false; | 46 return false; |
47 } | 47 } |
48 | 48 |
49 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bo
unds.height())); | 49 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bo
unds.height())); |
50 if (NULL == device.get()) { | 50 if (nullptr == device.get()) { |
51 return false; | 51 return false; |
52 } | 52 } |
53 SkCanvas canvas(device); | 53 SkCanvas canvas(device); |
54 SkPaint paint; | 54 SkPaint paint; |
55 paint.setXfermodeMode(SkXfermode::kSrc_Mode); | 55 paint.setXfermodeMode(SkXfermode::kSrc_Mode); |
56 canvas.translate(SkIntToScalar(srcOffset.fX - bounds.fLeft), | 56 canvas.translate(SkIntToScalar(srcOffset.fX - bounds.fLeft), |
57 SkIntToScalar(srcOffset.fY - bounds.fTop)); | 57 SkIntToScalar(srcOffset.fY - bounds.fTop)); |
58 SkVector vec; | 58 SkVector vec; |
59 ctx.ctm().mapVectors(&vec, &fOffset, 1); | 59 ctx.ctm().mapVectors(&vec, &fOffset, 1); |
60 canvas.drawBitmap(src, vec.x(), vec.y(), &paint); | 60 canvas.drawBitmap(src, vec.x(), vec.y(), &paint); |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 void SkOffsetImageFilter::toString(SkString* str) const { | 113 void SkOffsetImageFilter::toString(SkString* str) const { |
114 str->appendf("SkOffsetImageFilter: ("); | 114 str->appendf("SkOffsetImageFilter: ("); |
115 str->appendf("offset: (%f, %f) ", fOffset.fX, fOffset.fY); | 115 str->appendf("offset: (%f, %f) ", fOffset.fX, fOffset.fY); |
116 str->append("input: ("); | 116 str->append("input: ("); |
117 if (this->getInput(0)) { | 117 if (this->getInput(0)) { |
118 this->getInput(0)->toString(str); | 118 this->getInput(0)->toString(str); |
119 } | 119 } |
120 str->append("))"); | 120 str->append("))"); |
121 } | 121 } |
122 #endif | 122 #endif |
OLD | NEW |