OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 "SkRectShaderImageFilter.h" | 8 #include "SkRectShaderImageFilter.h" |
9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 SkSafeUnref(fShader); | 42 SkSafeUnref(fShader); |
43 } | 43 } |
44 | 44 |
45 bool SkRectShaderImageFilter::onFilterImage(Proxy* proxy, | 45 bool SkRectShaderImageFilter::onFilterImage(Proxy* proxy, |
46 const SkBitmap& source, | 46 const SkBitmap& source, |
47 const SkMatrix&, | 47 const SkMatrix&, |
48 SkBitmap* result, | 48 SkBitmap* result, |
49 SkIPoint*) { | 49 SkIPoint*) { |
50 SkRect rect(fRect); | 50 SkRect rect(fRect); |
51 if (rect.isEmpty()) { | 51 if (rect.isEmpty()) { |
52 rect = SkRect::MakeWH(source.width(), source.height()); | 52 rect = SkRect::MakeWH(SkIntToScalar(source.width()), SkIntToScalar(sourc
e.height())); |
53 } | 53 } |
54 | 54 |
55 if (rect.isEmpty()) { | 55 if (rect.isEmpty()) { |
56 return false; | 56 return false; |
57 } | 57 } |
58 | 58 |
59 SkAutoTUnref<SkDevice> device(proxy->createDevice(SkScalarCeilToInt(rect.wid
th()), | 59 SkAutoTUnref<SkDevice> device(proxy->createDevice(SkScalarCeilToInt(rect.wid
th()), |
60 SkScalarCeilToInt(rect.hei
ght()))); | 60 SkScalarCeilToInt(rect.hei
ght()))); |
61 SkCanvas canvas(device.get()); | 61 SkCanvas canvas(device.get()); |
62 SkPaint paint; | 62 SkPaint paint; |
63 paint.setShader(fShader); | 63 paint.setShader(fShader); |
64 canvas.drawRect(rect, paint); | 64 canvas.drawRect(rect, paint); |
65 *result = device.get()->accessBitmap(false); | 65 *result = device.get()->accessBitmap(false); |
66 return true; | 66 return true; |
67 } | 67 } |
OLD | NEW |