2#ifndef LIBSBX_GRAPHICS_COMMANDS_COMMAND_POOL_HPP_
3#define LIBSBX_GRAPHICS_COMMANDS_COMMAND_POOL_HPP_
7#include <vulkan/vulkan.hpp>
9#include <libsbx/graphics/devices/logical_device.hpp>
11namespace sbx::graphics {
17 command_pool(VkQueueFlagBits queue_type = VK_QUEUE_GRAPHICS_BIT);
21 auto handle()
const noexcept ->
const VkCommandPool&;
23 operator const VkCommandPool&()
const noexcept;
27 auto _queue(VkQueueFlagBits queue_type)
const ->
const queue&;
29 VkCommandPool _handle{};
Definition: command_pool.hpp:13
Definition: logical_device.hpp:19