Specification
C Version:
C Implementation Specific Version:
void wisVKCommandListInsertBarriers(const WisVKCommandList* self,
const WisVKBarrierGroup* barriers);
void wisDX12CommandListInsertBarriers(const WisDX12CommandList* self,
const WisDX12BarrierGroup* barriers);
C++ Version:
namespace wis{
void CommandList::InsertBarriers(const wis::BarrierGroup& barriers) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
void VKCommandList::InsertBarriers(const wis::VKBarrierGroup& barriers) const noexcept;
void DX12CommandList::InsertBarriers(const wis::DX12BarrierGroup& barriers) const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisCommandList instance.
barriers specifies a pointer to an array of barriers to insert.
Description
See Also