Home
last modified time | relevance | path

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

/third_party/skia/src/sksl/codegen/
DSkSLMetalCodeGenerator.cpp196 const SkTArray<VariableReference*>& outVars) { in getOutParamHelper() argument
220 SkASSERT(outVars.size() == arguments.size()); in getOutParamHelper()
221 SkASSERT(outVars.size() == function.parameters().size()); in getOutParamHelper()
235 const Type* type = outVars[index] ? &outVars[index]->type() : &arguments[index]->type(); in getOutParamHelper()
241 if (outVars[index]) { in getOutParamHelper()
242 auto [iter, didInsert] = writtenVars.insert(outVars[index]->variable()); in getOutParamHelper()
246 this->writeVariableReference(*outVars[index]); in getOutParamHelper()
257 for (int index = 0; index < outVars.count(); ++index) { in getOutParamHelper()
258 if (!outVars[index]) { in getOutParamHelper()
298 for (int index = 0; index < outVars.count(); ++index) { in getOutParamHelper()
[all …]
DSkSLMetalCodeGenerator.h154 const SkTArray<VariableReference*>& outVars);