blob: c6c9ae9c7a6c997a342484d08d656bdb6f72f816 [file] [log] [blame]
#include "SkOpArray.h"
SkOpArray::SkOpArray() : fType(SkOperand2::kNoType) {
}
SkOpArray::SkOpArray(SkOperand2::OpType type) : fType(type) {
}
bool SkOpArray::getIndex(int index, SkOperand2* operand) {
if (index >= count()) {
SkASSERT(0);
return false;
}
*operand = begin()[index];
return true;
}