| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 #ifndef SkBitmapDevice_DEFINED | 9 #ifndef SkBitmapDevice_DEFINED |
| 10 #define SkBitmapDevice_DEFINED | 10 #define SkBitmapDevice_DEFINED |
| 11 | 11 |
| 12 #include "SkBitmap.h" | |
| 13 #include "SkCanvas.h" | |
| 14 #include "SkColor.h" | |
| 15 #include "SkDevice.h" | 12 #include "SkDevice.h" |
| 16 #include "SkImageFilter.h" | |
| 17 #include "SkImageInfo.h" | |
| 18 #include "SkRect.h" | |
| 19 #include "SkScalar.h" | |
| 20 #include "SkSize.h" | |
| 21 #include "SkSurfaceProps.h" | |
| 22 #include "SkTypes.h" | |
| 23 | |
| 24 class SkDraw; | |
| 25 class SkMatrix; | |
| 26 class SkPaint; | |
| 27 class SkPath; | |
| 28 class SkPixelRef; | |
| 29 class SkPixmap; | |
| 30 class SkRRect; | |
| 31 class SkSurface; | |
| 32 class SkXfermode; | |
| 33 struct SkPoint; | |
| 34 | 13 |
| 35 /////////////////////////////////////////////////////////////////////////////// | 14 /////////////////////////////////////////////////////////////////////////////// |
| 36 class SK_API SkBitmapDevice : public SkBaseDevice { | 15 class SK_API SkBitmapDevice : public SkBaseDevice { |
| 37 public: | 16 public: |
| 38 /** | 17 /** |
| 39 * Construct a new device with the specified bitmap as its backend. It is | 18 * Construct a new device with the specified bitmap as its backend. It is |
| 40 * valid for the bitmap to have no pixels associated with it. In that case, | 19 * valid for the bitmap to have no pixels associated with it. In that case, |
| 41 * any drawing to this device will have no effect. | 20 * any drawing to this device will have no effect. |
| 42 */ | 21 */ |
| 43 SkBitmapDevice(const SkBitmap& bitmap); | 22 SkBitmapDevice(const SkBitmap& bitmap); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 SkImageFilter::Cache* getImageFilterCache() override; | 144 SkImageFilter::Cache* getImageFilterCache() override; |
| 166 | 145 |
| 167 SkBitmap fBitmap; | 146 SkBitmap fBitmap; |
| 168 | 147 |
| 169 void setNewSize(const SkISize&); // Used by SkCanvas for resetForNextPictur
e(). | 148 void setNewSize(const SkISize&); // Used by SkCanvas for resetForNextPictur
e(). |
| 170 | 149 |
| 171 typedef SkBaseDevice INHERITED; | 150 typedef SkBaseDevice INHERITED; |
| 172 }; | 151 }; |
| 173 | 152 |
| 174 #endif // SkBitmapDevice_DEFINED | 153 #endif // SkBitmapDevice_DEFINED |
| OLD | NEW |