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

Detailed Description

Specification


C Version:

C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void wisVKCommandListInsertBarriers(const WisVKCommandList* self,
const WisVKBarrierGroup* barriers);
// Provided by Wisdom 0.7.0.
void wisDX12CommandListInsertBarriers(const WisDX12CommandList* self,
const WisDX12BarrierGroup* barriers);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
void CommandList::InsertBarriers(const wis::BarrierGroup& barriers) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
void VKCommandList::InsertBarriers(const wis::VKBarrierGroup& barriers) const noexcept;
// Provided by Wisdom 0.7.0.
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