| 47 | } |
| 48 | |
| 49 | D3D12DescriptorSet::CpuHandle D3D12DescriptorSet::getCpuHandle(uint32_t rangeIndex, uint32_t descInRange) const |
| 50 | { |
| 51 | uint32_t index = mpApiData->rangeBaseOffset[rangeIndex] + descInRange; |
| 52 | return mpApiData->pAllocation->getCpuHandle(index); |
| 53 | } |
| 54 | |
| 55 | D3D12DescriptorSet::GpuHandle D3D12DescriptorSet::getGpuHandle(uint32_t rangeIndex, uint32_t descInRange) const |
| 56 | { |
no outgoing calls
no test coverage detected