mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
50 lines
1.7 KiB
C++
50 lines
1.7 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* vk_queues.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/10/08 19:01:49 by maldavid #+# #+# */
|
|
/* Updated: 2024/01/03 15:26:31 by maldavid ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef __MLX_VK_QUEUES__
|
|
#define __MLX_VK_QUEUES__
|
|
|
|
#include <mlx_profile.h>
|
|
#include <volk.h>
|
|
#include <optional>
|
|
#include <cstdint>
|
|
|
|
namespace mlx
|
|
{
|
|
class Queues
|
|
{
|
|
public:
|
|
struct QueueFamilyIndices
|
|
{
|
|
std::optional<uint32_t> graphicsFamily;
|
|
std::optional<uint32_t> presentFamily;
|
|
|
|
inline bool isComplete() { return graphicsFamily.has_value() && presentFamily.has_value(); }
|
|
};
|
|
|
|
QueueFamilyIndices findQueueFamilies(VkPhysicalDevice device, VkSurfaceKHR surface);
|
|
|
|
void init();
|
|
|
|
inline VkQueue& getGraphic() noexcept { return _graphicsQueue; }
|
|
inline VkQueue& getPresent() noexcept { return _presentQueue; }
|
|
inline QueueFamilyIndices getFamilies() noexcept { return *_families; }
|
|
|
|
private:
|
|
VkQueue _graphicsQueue;
|
|
VkQueue _presentQueue;
|
|
std::optional<QueueFamilyIndices> _families;
|
|
};
|
|
}
|
|
|
|
#endif // __MLX_VK_QUEUES__
|