Specification
C Version:
C Implementation Specific Version:
void wisVKCommandListSetDescriptorTable(const WisVKCommandList* self,
void wisDX12CommandListSetDescriptorTable(const WisDX12CommandList* self,
C++ Version:
namespace wis{
void CommandList::SetDescriptorTable(const wis::DescriptorTableDataDesc& data) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
void VKCommandList::SetDescriptorTable(const wis::DescriptorTableDataDesc& data) const noexcept;
void DX12CommandList::SetDescriptorTable(const wis::DescriptorTableDataDesc& data) const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisCommandList instance.
data specifies the root parameter index to set the descriptor table for.
Description
See Also