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

Method create

Source/Falcor/Core/API/Shared/D3D12DescriptorSet.cpp:176–185  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176ref<D3D12DescriptorSet> D3D12DescriptorSet::create(
177 ref<Device> pDevice,
178 ref<D3D12DescriptorPool> pPool,
179 const D3D12DescriptorSetLayout& layout
180)
181{
182 FALCOR_ASSERT(pDevice);
183 pDevice->requireD3D12();
184 return ref<D3D12DescriptorSet>(new D3D12DescriptorSet(pDevice, pPool, layout));
185}
186
187ref<D3D12DescriptorSet> D3D12DescriptorSet::create(
188 ref<Device> pDevice,

Callers

nothing calls this directly

Calls 1

requireD3D12Method · 0.80

Tested by

no test coverage detected