blob: eb3fcece65e27ff62193aa7969a854f8050c460d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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;
}
|