| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 "SkBitmapDevice.h" | 8 #include "SkBitmapDevice.h" |
| 9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkData.h" | 10 #include "SkData.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 class GatherPixelRefDevice : public SkBaseDevice { | 51 class GatherPixelRefDevice : public SkBaseDevice { |
| 52 public: | 52 public: |
| 53 SK_DECLARE_INST_COUNT(GatherPixelRefDevice) | 53 SK_DECLARE_INST_COUNT(GatherPixelRefDevice) |
| 54 | 54 |
| 55 GatherPixelRefDevice(int width, int height, PixelRefSet* prset) { | 55 GatherPixelRefDevice(int width, int height, PixelRefSet* prset) { |
| 56 fSize.set(width, height); | 56 fSize.set(width, height); |
| 57 fEmptyBitmap.setConfig(SkImageInfo::MakeUnknown(width, height)); | 57 fEmptyBitmap.setConfig(SkImageInfo::MakeUnknown(width, height)); |
| 58 fPRSet = prset; | 58 fPRSet = prset; |
| 59 } | 59 } |
| 60 | 60 |
| 61 virtual uint32_t getDeviceCapabilities() SK_OVERRIDE { return 0; } | |
| 62 virtual int width() const SK_OVERRIDE { return fSize.width(); } | 61 virtual int width() const SK_OVERRIDE { return fSize.width(); } |
| 63 virtual int height() const SK_OVERRIDE { return fSize.height(); } | 62 virtual int height() const SK_OVERRIDE { return fSize.height(); } |
| 64 virtual bool isOpaque() const SK_OVERRIDE { return false; } | 63 virtual bool isOpaque() const SK_OVERRIDE { return false; } |
| 65 virtual SkBitmap::Config config() const SK_OVERRIDE { | 64 virtual SkBitmap::Config config() const SK_OVERRIDE { |
| 66 return SkBitmap::kNo_Config; | 65 return SkBitmap::kNo_Config; |
| 67 } | 66 } |
| 68 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE { return NULL; } | 67 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE { return NULL; } |
| 69 virtual bool filterTextFlags(const SkPaint& paint, TextFlags*) SK_OVERRIDE { | 68 virtual bool filterTextFlags(const SkPaint& paint, TextFlags*) SK_OVERRIDE { |
| 70 return false; | 69 return false; |
| 71 } | 70 } |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 canvas.clipRect(area, SkRegion::kIntersect_Op, false); | 228 canvas.clipRect(area, SkRegion::kIntersect_Op, false); |
| 230 canvas.drawPicture(*pict); | 229 canvas.drawPicture(*pict); |
| 231 | 230 |
| 232 SkData* data = NULL; | 231 SkData* data = NULL; |
| 233 int count = array.count(); | 232 int count = array.count(); |
| 234 if (count > 0) { | 233 if (count > 0) { |
| 235 data = SkData::NewFromMalloc(array.detach(), count * sizeof(SkPixelRef*)
); | 234 data = SkData::NewFromMalloc(array.detach(), count * sizeof(SkPixelRef*)
); |
| 236 } | 235 } |
| 237 return data; | 236 return data; |
| 238 } | 237 } |
| OLD | NEW |