Home
last modified time | relevance | path

Searched refs:typecastArgs (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/src/sksl/ir/
DSkSLConstructorArrayCast.cpp25 ExpressionArray typecastArgs; in cast_constant_array() local
26 typecastArgs.reserve_back(inputArgs.size()); in cast_constant_array()
30 typecastArgs.push_back(ConstructorScalarCast::Make(context, line, scalarType, in cast_constant_array()
33 typecastArgs.push_back(ConstructorCompoundCast::Make(context, line, scalarType, in cast_constant_array()
38 return ConstructorArray::Make(context, constCtor->fLine, destType, std::move(typecastArgs)); in cast_constant_array()
DSkSLConstructorCompoundCast.cpp52 ExpressionArray typecastArgs; in cast_constant_composite() local
53 typecastArgs.reserve_back(numSlots); in cast_constant_composite()
61 typecastArgs.push_back(Literal::Make(constCtor->fLine, *slotVal, &scalarType)); in cast_constant_composite()
65 std::move(typecastArgs)); in cast_constant_composite()