| 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 | } |
nothing calls this directly
no test coverage detected