| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 The Android Open Source Project | 2 * Copyright 2013 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 "SkPictureImageFilter.h" | 8 #include "SkPictureImageFilter.h" |
| 9 #include "SkDevice.h" | 9 #include "SkDevice.h" |
| 10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 SkCanvas canvas(device, proxy->surfaceProps(), SkCanvas::kDefault_InitFlags)
; | 160 SkCanvas canvas(device, proxy->surfaceProps(), SkCanvas::kDefault_InitFlags)
; |
| 161 | 161 |
| 162 canvas.translate(-SkIntToScalar(deviceBounds.fLeft), -SkIntToScalar(deviceBo
unds.fTop)); | 162 canvas.translate(-SkIntToScalar(deviceBounds.fLeft), -SkIntToScalar(deviceBo
unds.fTop)); |
| 163 canvas.concat(ctx.ctm()); | 163 canvas.concat(ctx.ctm()); |
| 164 SkPaint paint; | 164 SkPaint paint; |
| 165 paint.setFilterLevel(fFilterLevel); | 165 paint.setFilterLevel(fFilterLevel); |
| 166 canvas.drawBitmap(localDevice.get()->accessBitmap(false), SkIntToScalar(loca
lIBounds.fLeft), | 166 canvas.drawBitmap(localDevice.get()->accessBitmap(false), SkIntToScalar(loca
lIBounds.fLeft), |
| 167 SkIntToScalar(localIBounds.fTop), &paint); | 167 SkIntToScalar(localIBounds.fTop), &paint); |
| 168 //canvas.drawPicture(fPicture); | 168 //canvas.drawPicture(fPicture); |
| 169 } | 169 } |
| 170 |
| 171 #ifndef SK_IGNORE_TO_STRING |
| 172 void SkPictureImageFilter::toString(SkString* str) const { |
| 173 str->appendf("SkPictureImageFilter: ("); |
| 174 str->appendf("crop: (%f,%f,%f,%f) ", |
| 175 fCropRect.fLeft, fCropRect.fTop, fCropRect.fRight, fCropRect.fB
ottom); |
| 176 if (fPicture) { |
| 177 str->appendf("picture: (%f,%f,%f,%f)", |
| 178 fPicture->cullRect().fLeft, fPicture->cullRect().fTop, |
| 179 fPicture->cullRect().fRight, fPicture->cullRect().fBottom); |
| 180 } |
| 181 str->append(")"); |
| 182 } |
| 183 #endif |
| OLD | NEW |