Specification
C Version:
C Implementation Specific Version:
WisResult wisVKCommandAllocatorCreateCommandList(
const WisVKCommandAllocator* self,
WisVKCommandList* list);
WisResult wisDX12CommandAllocatorCreateCommandList(
const WisDX12CommandAllocator* self,
WisDX12CommandList* list);
C++ Version:
namespace wis{
WIS_NODISCARD wis::CommandList CommandAllocator::CreateCommandList(wis::Result& out_result) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
WIS_NODISCARD wis::VKCommandList VKCommandAllocator::CreateCommandList(wis::Result& out_result) const noexcept;
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