Searched defs:SkRecord (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/src/core/
H A DSkRecord.h16 // SkRecord (REC-ord) represents a sequence of SkCanvas calls, saved for future use.
20 // work with SkRecord, you probably want to look at SkRecorder which presents an SkCanvas interface
21 // for creating an SkRecord, and SkRecordDraw which plays an SkRecord back into another SkCanvas.
23 // SkRecord often looks like it's compatible with any type T, but really it's compatible with any
24 // type T which has a static const SkRecords::Type kType. That is to say, SkRecord is compatible
28 class SkRecord : SkNoncopyable { class in inherits:SkNoncopyable
34 SkRecord() : fAlloc(kChunkBytes), fCount(0), fReserved(0) {} function in class:SkRecord
36 ~SkRecord() {
43 // Returns the number of canvas commands in this SkRecord
[all...]
/external/skia/src/core/
H A DSkRecord.h16 // SkRecord (REC-ord) represents a sequence of SkCanvas calls, saved for future use.
20 // work with SkRecord, you probably want to look at SkRecorder which presents an SkCanvas interface
21 // for creating an SkRecord, and SkRecordDraw which plays an SkRecord back into another SkCanvas.
23 // SkRecord often looks like it's compatible with any type T, but really it's compatible with any
24 // type T which has a static const SkRecords::Type kType. That is to say, SkRecord is compatible
28 class SkRecord : SkNoncopyable { class in inherits:SkNoncopyable
30 SkRecord(size_t chunkBytes = 4096, unsigned firstReserveCount = 64 / sizeof(void*)) function in class:SkRecord
33 ~SkRecord() {
40 // Returns the number of canvas commands in this SkRecord
[all...]

Completed in 791 milliseconds