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

Detailed Description

Specification


C Version:

// Provided by Wisdom 0.7.0.
WisRootSignatureView signature,
WisPipelineType pipeline);
C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void wisVKCommandListSetRootSignature(const WisVKCommandList* self,
WisVKRootSignatureView signature,
WisPipelineType pipeline);
// Provided by Wisdom 0.7.0.
void wisDX12CommandListSetRootSignature(const WisDX12CommandList* self,
WisDX12RootSignatureView signature,
WisPipelineType pipeline);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
void CommandList::SetRootSignature(wis::RootSignatureView signature,
wis::PipelineType pipeline) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
void VKCommandList::SetRootSignature(wis::VKRootSignatureView signature,
wis::PipelineType pipeline) const noexcept;
// Provided by Wisdom 0.7.0.
void DX12CommandList::SetRootSignature(wis::DX12RootSignatureView signature,
wis::PipelineType pipeline) const noexcept;
}

Parameters


  • this self self is a pointer to the valid WisCommandList instance.
  • signature specifies a pointer to WisRootSignature to set.
  • pipeline specifies the pipeline type to set the root signature for.

Description


See Also