Specification
C Version:
WisRootSignatureView signature,
C Implementation Specific Version:
void wisVKCommandListSetRootSignature(const WisVKCommandList* self,
WisVKRootSignatureView signature,
void wisDX12CommandListSetRootSignature(const WisDX12CommandList* self,
WisDX12RootSignatureView signature,
C++ Version:
namespace wis{
void CommandList::SetRootSignature(wis::RootSignatureView signature,
wis::PipelineType pipeline) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
void VKCommandList::SetRootSignature(wis::VKRootSignatureView signature,
wis::PipelineType pipeline) const noexcept;
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