| 174 | } |
| 175 | |
| 176 | ref<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 | |
| 187 | ref<D3D12DescriptorSet> D3D12DescriptorSet::create( |
| 188 | ref<Device> pDevice, |
nothing calls this directly
no test coverage detected