Specification
C Version:
C Implementation Specific Version:
WisResult wisVKCommandListBegin(
const WisVKCommandList* self);
WisResult wisDX12CommandListBegin(
const WisDX12CommandList* self);
C++ Version:
namespace wis{
wis::Result CommandList::Begin() const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
wis::Result VKCommandList::Begin() const noexcept;
wis::Result DX12CommandList::Begin() const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisCommandList instance.
- return denoting the outcome of operation.
Description
See Also