| 86 | } |
| 87 | |
| 88 | void D3D12DescriptorSet::setSampler(uint32_t rangeIndex, uint32_t descIndex, const Sampler* pSampler) |
| 89 | { |
| 90 | FALCOR_CHECK(getRange(rangeIndex).type == Type::Sampler, "Unexpected descriptor range type in setSampler()"); |
| 91 | setCpuHandle(rangeIndex, descIndex, pSampler->getNativeHandle().as<D3D12_CPU_DESCRIPTOR_HANDLE>()); |
| 92 | } |
| 93 | |
| 94 | static D3D12_GPU_DESCRIPTOR_HANDLE copyDescriptorTableToGPU( |
| 95 | CopyContext* pCtx, |
nothing calls this directly
no test coverage detected