HomeSort by relevance Sort by last modified time
    Searched defs:SkRecord (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/src/core/
SkRecord.h 16 // 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 {
34 SkRecord() : fAlloc(kChunkBytes), fCount(0), fReserved(0) {}
36 ~SkRecord() {
43 // Returns the number of canvas commands in this SkRecord
    [all...]
  /external/skia/src/core/
SkRecord.h 16 // 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 {
30 SkRecord(size_t chunkBytes = 4096, unsigned firstReserveCount = 64 / sizeof(void*))
33 ~SkRecord() {
40 // Returns the number of canvas commands in this SkRecord
    [all...]

Completed in 435 milliseconds