Home
last modified time | relevance | path

Searched refs:fParameterSlots (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/src/sksl/codegen/
DSkSLVMCodeGenerator.h63 size_t fParameterSlots = 0; member
DSkSLVMCodeGenerator.cpp1880 signature->fParameterSlots += slots; in ProgramToSkVM()
/third_party/skia/tests/
DSkSLInterpreterTest.cpp94 REPORTER_ASSERT(r, p.nargs() == (int)(sig.fParameterSlots + sig.fReturnSlots)); in test()
97 auto args = std::make_unique<void*[]>(sig.fParameterSlots + sig.fReturnSlots); in test()
98 for (size_t i = 0; i < sig.fParameterSlots; ++i) { in test()
102 args[sig.fParameterSlots + i] = out.get() + i; in test()