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

Detailed Description

Specification


C Version:

// Provided by Wisdom 0.7.0.
uint32_t group_count_x,
uint32_t group_count_y,
uint32_t group_count_z);
C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void wisVKCommandListDispatch(const WisVKCommandList* self,
uint32_t group_count_x,
uint32_t group_count_y,
uint32_t group_count_z);
// Provided by Wisdom 0.7.0.
void wisDX12CommandListDispatch(const WisDX12CommandList* self,
uint32_t group_count_x,
uint32_t group_count_y,
uint32_t group_count_z);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
void CommandList::Dispatch(std::uint32_t group_count_x,
std::uint32_t group_count_y,
std::uint32_t group_count_z) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
void VKCommandList::Dispatch(std::uint32_t group_count_x,
std::uint32_t group_count_y,
std::uint32_t group_count_z) const noexcept;
// Provided by Wisdom 0.7.0.
void DX12CommandList::Dispatch(std::uint32_t group_count_x,
std::uint32_t group_count_y,
std::uint32_t group_count_z) const noexcept;
}

Parameters


  • this self self is a pointer to the valid WisCommandList instance.
  • group_count_x defines number of groups to dispatch in X dimension.
  • group_count_y describes number of groups to dispatch in Y dimension; default is 1.
  • group_count_z specifies number of groups to dispatch in Z dimension; default is 1.

Description


See Also