OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 #ifndef SkPictureRecord_DEFINED | 8 #ifndef SkPictureRecord_DEFINED |
9 #define SkPictureRecord_DEFINED | 9 #define SkPictureRecord_DEFINED |
10 | 10 |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 SkXfermode::Mode, const SkRect*, const SkPaint*) override; | 175 SkXfermode::Mode, const SkRect*, const SkPaint*) override; |
176 | 176 |
177 void onDrawPaint(const SkPaint&) override; | 177 void onDrawPaint(const SkPaint&) override; |
178 void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPain
t&) override; | 178 void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPain
t&) override; |
179 void onDrawRect(const SkRect&, const SkPaint&) override; | 179 void onDrawRect(const SkRect&, const SkPaint&) override; |
180 void onDrawOval(const SkRect&, const SkPaint&) override; | 180 void onDrawOval(const SkRect&, const SkPaint&) override; |
181 void onDrawRRect(const SkRRect&, const SkPaint&) override; | 181 void onDrawRRect(const SkRRect&, const SkPaint&) override; |
182 void onDrawPath(const SkPath&, const SkPaint&) override; | 182 void onDrawPath(const SkPath&, const SkPaint&) override; |
183 void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPain
t*) override; | 183 void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPain
t*) override; |
184 void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst,
const SkPaint*, | 184 void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst,
const SkPaint*, |
185 SK_VIRTUAL_CONSTRAINT_TYPE) override; | 185 SrcRectConstraint) override; |
186 void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint*
) override; | 186 void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint*
) override; |
187 void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst, | 187 void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst, |
188 const SkPaint* SRC_RECT_CONSTRAINT_PARAM(constraint)) o
verride; | 188 const SkPaint*, SrcRectConstraint) override; |
189 void onDrawImageNine(const SkImage*, const SkIRect& center, const SkRect& ds
t, | 189 void onDrawImageNine(const SkImage*, const SkIRect& center, const SkRect& ds
t, |
190 const SkPaint*) override; | 190 const SkPaint*) override; |
191 void onDrawBitmapNine(const SkBitmap&, const SkIRect& center, const SkRect&
dst, | 191 void onDrawBitmapNine(const SkBitmap&, const SkIRect& center, const SkRect&
dst, |
192 const SkPaint*) override; | 192 const SkPaint*) override; |
193 void onDrawSprite(const SkBitmap&, int left, int top, const SkPaint*) overri
de; | 193 void onDrawSprite(const SkBitmap&, int left, int top, const SkPaint*) overri
de; |
194 void onDrawVertices(VertexMode vmode, int vertexCount, | 194 void onDrawVertices(VertexMode vmode, int vertexCount, |
195 const SkPoint vertices[], const SkPoint texs[], | 195 const SkPoint vertices[], const SkPoint texs[], |
196 const SkColor colors[], SkXfermode* xmode, | 196 const SkColor colors[], SkXfermode* xmode, |
197 const uint16_t indices[], int indexCount, | 197 const uint16_t indices[], int indexCount, |
198 const SkPaint&) override; | 198 const SkPaint&) override; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 | 236 |
237 uint32_t fRecordFlags; | 237 uint32_t fRecordFlags; |
238 int fInitialSaveCount; | 238 int fInitialSaveCount; |
239 | 239 |
240 friend class SkPictureData; // for SkPictureData's SkPictureRecord-based c
onstructor | 240 friend class SkPictureData; // for SkPictureData's SkPictureRecord-based c
onstructor |
241 | 241 |
242 typedef SkCanvas INHERITED; | 242 typedef SkCanvas INHERITED; |
243 }; | 243 }; |
244 | 244 |
245 #endif | 245 #endif |
OLD | NEW |