| 1884 | } |
| 1885 | |
| 1886 | D3D12_GPU_DESCRIPTOR_HANDLE D3D12DebugManager::GetGPUHandle(CBVUAVSRVSlot slot) |
| 1887 | { |
| 1888 | D3D12_GPU_DESCRIPTOR_HANDLE ret = cbvsrvuavHeap->GetGPUDescriptorHandleForHeapStart(); |
| 1889 | ret.ptr += slot * sizeof(D3D12Descriptor); |
| 1890 | return ret; |
| 1891 | } |
| 1892 | |
| 1893 | D3D12_GPU_DESCRIPTOR_HANDLE D3D12DebugManager::GetGPUHandle(RTVSlot slot) |
| 1894 | { |
no test coverage detected