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

Detailed Description

Specification


C Version:

// Provided by Wisdom 0.7.0.
const WisVertexBufferDesc* buffers,
size_t buffer_count,
uint32_t start_slot);
C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void wisVKCommandListSetVertexBuffers(WisVKCommandList* self,
const WisVKVertexBufferDesc* buffers,
size_t buffer_count,
uint32_t start_slot);
// Provided by Wisdom 0.7.0.
void wisDX12CommandListSetVertexBuffers(WisDX12CommandList* self,
const WisDX12VertexBufferDesc* buffers,
size_t buffer_count,
uint32_t start_slot);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
void CommandList::SetVertexBuffers(const wis::VertexBufferDesc* buffers,
std::size_t buffer_count,
std::uint32_t start_slot) noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
void VKCommandList::SetVertexBuffers(const wis::VKVertexBufferDesc* buffers,
std::size_t buffer_count,
std::uint32_t start_slot) noexcept;
// Provided by Wisdom 0.7.0.
void DX12CommandList::SetVertexBuffers(const wis::DX12VertexBufferDesc* buffers,
std::size_t buffer_count,
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