| 65 | } |
| 66 | |
| 67 | ref<D3D12DescriptorPool> D3D12DescriptorPool::create(Device* pDevice, const Desc& desc, ref<Fence> pFence) |
| 68 | { |
| 69 | FALCOR_ASSERT(pDevice); |
| 70 | pDevice->requireD3D12(); |
| 71 | return ref<D3D12DescriptorPool>(new D3D12DescriptorPool(pDevice, desc, pFence)); |
| 72 | } |
| 73 | |
| 74 | D3D12DescriptorPool::D3D12DescriptorPool(Device* pDevice, const Desc& desc, ref<Fence> pFence) : mDesc(desc), mpFence(pFence) |
| 75 | { |
nothing calls this directly
no test coverage detected