1#ifndef LIBSBX_GRAPHICS_COMMANDS_COMMAND_POOL_HPP_
2#define LIBSBX_GRAPHICS_COMMANDS_COMMAND_POOL_HPP_
6#include <vulkan/vulkan.hpp>
8#include <libsbx/graphics/devices/logical_device.hpp>
10namespace sbx::graphics {
16 command_pool(VkQueueFlagBits queue_type = VK_QUEUE_GRAPHICS_BIT);
20 auto handle()
const noexcept ->
const VkCommandPool&;
22 operator const VkCommandPool&()
const noexcept;
26 auto _queue(VkQueueFlagBits queue_type)
const ->
const queue&;
28 VkCommandPool _handle{};
Definition: command_pool.hpp:12
Definition: logical_device.hpp:17