MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/Falcor / create

Method create

Source/Falcor/Core/Program/ProgramVersion.cpp:48–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46//
47
48ref<const EntryPointGroupKernels> EntryPointGroupKernels::create(
49 EntryPointGroupKernels::Type type,
50 const std::vector<ref<EntryPointKernel>>& kernels,
51 const std::string& exportName
52)
53{
54 return ref<EntryPointGroupKernels>(new EntryPointGroupKernels(type, kernels, exportName));
55}
56
57EntryPointGroupKernels::EntryPointGroupKernels(Type type, const std::vector<ref<EntryPointKernel>>& kernels, const std::string& exportName)
58 : mType(type), mKernels(kernels), mExportName(exportName)

Callers

nothing calls this directly

Calls 8

stringFunction · 0.85
writeRefMethod · 0.80
sizeMethod · 0.45
endMethod · 0.45
insertMethod · 0.45
push_backMethod · 0.45
dataMethod · 0.45
createProgramMethod · 0.45

Tested by

no test coverage detected