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

Detailed Description

Specification


C Version:

C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
WisResult wisVKCommandAllocatorCreateCommandList(const WisVKCommandAllocator* self,
WisVKCommandList* list);
// Provided by Wisdom 0.7.0.
WisResult wisDX12CommandAllocatorCreateCommandList(const WisDX12CommandAllocator* self,
WisDX12CommandList* list);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
WIS_NODISCARD wis::CommandList CommandAllocator::CreateCommandList(wis::Result& out_result) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
WIS_NODISCARD wis::VKCommandList VKCommandAllocator::CreateCommandList(wis::Result& out_result) const noexcept;
// Provided by Wisdom 0.7.0.
WIS_NODISCARD wis::DX12CommandList DX12CommandAllocator::CreateCommandList(wis::Result& out_result) const noexcept;
}

Parameters


  • this self self is a pointer to the valid WisCommandAllocator instance.
  • list points to WisCommandList, which is initialized on success.
  • return denoting the outcome of operation.

Description


See Also