Specification
C Version:
uint32_t dst_index,
uint64_t src_ptr,
uint32_t src_index,
uint32_t view_count);
C Implementation Specific Version:
void wisVKViewHeapCopyViews(const WisVKViewHeap* self,
uint32_t dst_index,
uint64_t src_ptr,
uint32_t src_index,
uint32_t view_count);
void wisDX12ViewHeapCopyViews(const WisDX12ViewHeap* self,
uint32_t dst_index,
uint64_t src_ptr,
uint32_t src_index,
uint32_t view_count);
C++ Version:
namespace wis{
void ViewHeap::CopyViews(std::uint32_t dst_index,
std::uint64_t src_ptr,
std::uint32_t src_index,
std::uint32_t view_count) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
void VKViewHeap::CopyViews(std::uint32_t dst_index,
std::uint64_t src_ptr,
std::uint32_t src_index,
std::uint32_t view_count) const noexcept;
void DX12ViewHeap::CopyViews(std::uint32_t dst_index,
std::uint64_t src_ptr,
std::uint32_t src_index,
std::uint32_t view_count) const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisViewHeap instance.
dst_index specifies the index in the destination view heap to copy views to.
src_ptr describes a pointer to WisViewHeap to copy views from.
src_index indicates the index in the source view heap to copy views from.
view_count indicates the number of views to copy.
Description
See Also