Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(682)

Side by Side Diff: src/core/SkPictureFlat.h

Issue 429343004: Stopped skipping tests in dm of SkPatch (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698