Specification
C Version:
C Implementation Specific Version:
uint64_t wisVKViewHeapGetViewAddress(const WisVKViewHeap* self,
uint32_t index);
uint64_t wisDX12ViewHeapGetViewAddress(const WisDX12ViewHeap* self,
uint32_t index);
C++ Version:
namespace wis{
WIS_NODISCARD std::uint64_t ViewHeap::GetViewAddress(std::uint32_t index) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
WIS_NODISCARD std::uint64_t VKViewHeap::GetViewAddress(std::uint32_t index) const noexcept;
WIS_NODISCARD std::uint64_t DX12ViewHeap::GetViewAddress(std::uint32_t index) const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisViewHeap instance.
index defines the index in the view heap to get the descriptor from.
- return Address of a view in heap.
Description
See Also