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

  /external/skia/src/core/
SkRecord.cpp 8 #include "SkRecord.h"
10 SkRecord::~SkRecord() {
17 void SkRecord::grow() {
24 size_t SkRecord::bytesUsed() const {
25 size_t bytes = fAlloc.approxBytesAllocated() + sizeof(SkRecord);
26 // If fReserved <= kInlineRecords, we've already accounted for fRecords with sizeof(SkRecord).
SkRecord.h 16 // SkRecord 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 : public SkNVRefCnt<SkRecord> {
35 SkRecord()
40 ~SkRecord();
    [all...]

Completed in 177 milliseconds