Specification
C Version:
C Implementation Specific Version:
WisResult wisVKDeviceCreateCommandQueue(
const WisVKDevice* self,
WisVKCommandQueue* queue);
WisResult wisDX12DeviceCreateCommandQueue(
const WisDX12Device* self,
WisDX12CommandQueue* queue);
C++ Version:
namespace wis{
WIS_NODISCARD wis::CommandQueue Device::CreateCommandQueue(wis::CommandQueueType type,
wis::Result& out_result) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
WIS_NODISCARD wis::VKCommandQueue VKDevice::CreateCommandQueue(wis::CommandQueueType type,
wis::Result& out_result) const noexcept;
WIS_NODISCARD wis::DX12CommandQueue DX12Device::CreateCommandQueue(wis::CommandQueueType type,
wis::Result& out_result) const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisDevice instance.
type specifies the type of the command queue to create.
queue points to WisCommandQueue, which is initialized on success.
- return denoting the outcome of operation.
Description
See Also