OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 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 #ifndef SkPictureFlat_DEFINED | 8 #ifndef SkPictureFlat_DEFINED |
9 #define SkPictureFlat_DEFINED | 9 #define SkPictureFlat_DEFINED |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 CLIP_RRECT, | 29 CLIP_RRECT, |
30 CONCAT, | 30 CONCAT, |
31 DRAW_BITMAP, | 31 DRAW_BITMAP, |
32 DRAW_BITMAP_MATRIX, | 32 DRAW_BITMAP_MATRIX, |
33 DRAW_BITMAP_NINE, | 33 DRAW_BITMAP_NINE, |
34 DRAW_BITMAP_RECT_TO_RECT, | 34 DRAW_BITMAP_RECT_TO_RECT, |
35 DRAW_CLEAR, | 35 DRAW_CLEAR, |
36 DRAW_DATA, | 36 DRAW_DATA, |
37 DRAW_OVAL, | 37 DRAW_OVAL, |
38 DRAW_PAINT, | 38 DRAW_PAINT, |
| 39 DRAW_PATCH, |
39 DRAW_PATH, | 40 DRAW_PATH, |
40 DRAW_PICTURE, | 41 DRAW_PICTURE, |
41 DRAW_POINTS, | 42 DRAW_POINTS, |
42 DRAW_POS_TEXT, | 43 DRAW_POS_TEXT, |
43 DRAW_POS_TEXT_TOP_BOTTOM, // fast variant of DRAW_POS_TEXT | 44 DRAW_POS_TEXT_TOP_BOTTOM, // fast variant of DRAW_POS_TEXT |
44 DRAW_POS_TEXT_H, | 45 DRAW_POS_TEXT_H, |
45 DRAW_POS_TEXT_H_TOP_BOTTOM, // fast variant of DRAW_POS_TEXT_H | 46 DRAW_POS_TEXT_H_TOP_BOTTOM, // fast variant of DRAW_POS_TEXT_H |
46 DRAW_RECT, | 47 DRAW_RECT, |
47 DRAW_RRECT, | 48 DRAW_RRECT, |
48 DRAW_SPRITE, | 49 DRAW_SPRITE, |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 } | 600 } |
600 | 601 |
601 private: | 602 private: |
602 SkChunkAlloc fHeap; | 603 SkChunkAlloc fHeap; |
603 SkAutoTUnref<SkRefCntSet> fTypefaceSet; | 604 SkAutoTUnref<SkRefCntSet> fTypefaceSet; |
604 void* fLastAllocated; | 605 void* fLastAllocated; |
605 mutable SkTypefacePlayback fTypefacePlayback; | 606 mutable SkTypefacePlayback fTypefacePlayback; |
606 }; | 607 }; |
607 | 608 |
608 #endif | 609 #endif |
OLD | NEW |