Specification
C Version:
WisPipelineView pipeline,
C Implementation Specific Version:
void wisVKCommandListSetPipeline(const WisVKCommandList* self,
WisVKPipelineView pipeline,
void wisDX12CommandListSetPipeline(const WisDX12CommandList* self,
WisDX12PipelineView pipeline,
C++ Version:
namespace wis{
void CommandList::SetPipeline(wis::PipelineView pipeline,
wis::PipelineType type) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
void VKCommandList::SetPipeline(wis::VKPipelineView pipeline,
wis::PipelineType type) const noexcept;
void DX12CommandList::SetPipeline(wis::DX12PipelineView pipeline,
wis::PipelineType type) const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisCommandList instance.
pipeline specifies a pointer to WisPipeline to set.
type specifies the pipeline type to set the pipeline for.
Description
See Also