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 |
(...skipping 22 matching lines...) Expand all Loading... |
33 public: | 33 public: |
34 static SkBitmapDevice* Create(const SkImageInfo& info) { | 34 static SkBitmapDevice* Create(const SkImageInfo& info) { |
35 return Create(info, NULL); | 35 return Create(info, NULL); |
36 } | 36 } |
37 | 37 |
38 virtual SkImageInfo imageInfo() const SK_OVERRIDE; | 38 virtual SkImageInfo imageInfo() const SK_OVERRIDE; |
39 | 39 |
40 protected: | 40 protected: |
41 bool onShouldDisableLCD(const SkPaint&) const SK_OVERRIDE; | 41 bool onShouldDisableLCD(const SkPaint&) const SK_OVERRIDE; |
42 | 42 |
43 /** Clears the entire device to the specified color (including alpha). | |
44 * Ignores the clip. | |
45 */ | |
46 virtual void clear(SkColor color) SK_OVERRIDE; | |
47 | |
48 /** These are called inside the per-device-layer loop for each draw call. | 43 /** These are called inside the per-device-layer loop for each draw call. |
49 When these are called, we have already applied any saveLayer operations, | 44 When these are called, we have already applied any saveLayer operations, |
50 and are handling any looping from the paint, and any effects from the | 45 and are handling any looping from the paint, and any effects from the |
51 DrawFilter. | 46 DrawFilter. |
52 */ | 47 */ |
53 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE; | 48 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE; |
54 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t coun
t, | 49 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t coun
t, |
55 const SkPoint[], const SkPaint& paint) SK_OVERRIDE; | 50 const SkPoint[], const SkPaint& paint) SK_OVERRIDE; |
56 virtual void drawRect(const SkDraw&, const SkRect& r, | 51 virtual void drawRect(const SkDraw&, const SkRect& r, |
57 const SkPaint& paint) SK_OVERRIDE; | 52 const SkPaint& paint) SK_OVERRIDE; |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 virtual const void* peekPixels(SkImageInfo*, size_t* rowBytes) SK_OVERRIDE; | 154 virtual const void* peekPixels(SkImageInfo*, size_t* rowBytes) SK_OVERRIDE; |
160 | 155 |
161 virtual SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE; | 156 virtual SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE; |
162 | 157 |
163 SkBitmap fBitmap; | 158 SkBitmap fBitmap; |
164 | 159 |
165 typedef SkBaseDevice INHERITED; | 160 typedef SkBaseDevice INHERITED; |
166 }; | 161 }; |
167 | 162 |
168 #endif // SkBitmapDevice_DEFINED | 163 #endif // SkBitmapDevice_DEFINED |
OLD | NEW |