Home | History | Annotate | Download | only in animator

Lines Matching full:value

142 bool SkDrawPath::getProperty(int index, SkScriptValue* value) const {
150 value->fType = SkType_Float;
151 value->fOperand.fScalar = fLength;
154 value->fType = SkType_FillType;
155 value->fOperand.fS32 = (int) fPath.getFillType();
173 bool SkDrawPath::setProperty(int index, SkScriptValue& value)
177 SkASSERT(value.fType == SkType_FillType);
178 SkASSERT(value.fOperand.fS32 >= SkPath::kWinding_FillType &&
179 value.fOperand.fS32 <= SkPath::kEvenOdd_FillType);
180 fPath.setFillType((SkPath::FillType) value.fOperand.fS32);