MCPcopy Create free account
hub / github.com/NVIDIA-RTX/NVRHI / createDescriptorTable

Method createDescriptorTable

src/validation/validation-device.cpp:1895–1904  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1893 for (auto& binding : patchedDesc.bindings)
1894 {
1895 binding.resourceHandle = unwrapResource(binding.resourceHandle);
1896 }
1897
1898 return m_Device->createBindingSet(patchedDesc, layout);
1899 }
1900
1901 DescriptorTableHandle DeviceWrapper::createDescriptorTable(IBindingLayout* layout)
1902 {
1903 if (!layout->getBindlessDesc())
1904 {
1905 error("Descriptor tables can only be created with bindless layouts");
1906 return nullptr;
1907 }

Callers

nothing calls this directly

Calls 1

getBindlessDescMethod · 0.45

Tested by

no test coverage detected