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

Detailed Description

Specification


C Version:

C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void wisVKCommandListBeginRenderPass(const WisVKCommandList* self,
const WisRenderPassDesc* desc);
// Provided by Wisdom 0.7.0.
void wisDX12CommandListBeginRenderPass(const WisDX12CommandList* self,
const WisRenderPassDesc* desc);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
void CommandList::BeginRenderPass(const wis::RenderPassDesc& desc) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
void VKCommandList::BeginRenderPass(const wis::RenderPassDesc& desc) const noexcept;
// Provided by Wisdom 0.7.0.
void DX12CommandList::BeginRenderPass(const wis::RenderPassDesc& desc) const noexcept;
}

Parameters


  • this self self is a pointer to the valid WisCommandList instance.
  • desc indicates a pointer to WisRenderPassDesc, which describes the render pass to begin.

Description


See Also