wisdom
Loading...
Searching...
No Matches
wisCommandListSetVertexBuffers2 Struct Reference

Detailed Description

Specification


C Version:

// Provided by Wisdom 0.7.0.
size_t buffer_count,
uint32_t start_slot);
C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void wisVKCommandListSetVertexBuffers2(WisVKCommandList* self,
size_t buffer_count,
uint32_t start_slot);
// Provided by Wisdom 0.7.0.
void wisDX12CommandListSetVertexBuffers2(WisDX12CommandList* self,
size_t buffer_count,
uint32_t start_slot);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
void CommandList::SetVertexBuffers2(wis::span<const wis::VertexBufferAddressDesc> buffers,
std::uint32_t start_slot) noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
void VKCommandList::SetVertexBuffers2(wis::span<const wis::VertexBufferAddressDesc> buffers,
std::uint32_t start_slot) noexcept;
// Provided by Wisdom 0.7.0.
void DX12CommandList::SetVertexBuffers2(wis::span<const wis::VertexBufferAddressDesc> buffers,
std::uint32_t start_slot) noexcept;
}

Parameters


  • this self self is a pointer to the valid WisCommandList instance.
  • buffers The vertex buffers to set.
  • buffer_count The number of vertex buffers to set.
  • start_slot The start slot to set the vertex buffers to. Default is 0.

Description


See Also