blob: 3d098c6c89742fa008364046059ab888a63251f3 [file] [log] [blame]
/*
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkRecord.h"
#include <algorithm>
SkRecord::SkRecord()
: fCount(0), fReserved(0), fAlloc(8/*first malloc at 256 bytes*/) {}
SkRecord::~SkRecord() {
Destroyer destroyer;
for (int i = 0; i < this->count(); i++) {
this->mutate(i, destroyer);
}
}
void SkRecord::grow() {
SkASSERT(fCount == fReserved);
fReserved = fReserved ? fReserved * 2 : 4;
fRecords.realloc(fReserved);
}
size_t SkRecord::bytesUsed() const {
return sizeof(SkRecord)
+ fReserved * sizeof(Record)
+ fAlloc.approxBytesAllocated();
}
void SkRecord::defrag() {
// Remove all the NoOps, preserving the order of other ops, e.g.
// Save, ClipRect, NoOp, DrawRect, NoOp, NoOp, Restore
// -> Save, ClipRect, DrawRect, Restore
Record* noops = std::remove_if(fRecords.get(), fRecords.get() + fCount,
[](Record op) { return op.type() == SkRecords::NoOp_Type; });
fCount = noops - fRecords.get();
}