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

/external/skia/src/core/
H A DSkRecord.cpp8 #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).
H A DSkRecord.h16 // 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> { class in inherits:SkNVRefCnt
35 SkRecord() function in class:SkRecord
40 ~SkRecord();
[all...]

Completed in 61 milliseconds