queue.hpp

1
2
3
4
5
6
7
#pragma once


#include <planet/vk/forward.hpp>


namespace planet::vk {

Vulkan Queue

The device will only create these for transfer queues that are not used for graphics or presentation.

The Vulkan queues are owned by the instance and we only see the index into some other data structure.

18
19
20
21
22
23
24
25
26
27
28
29
    class queue final {
        friend class device;

        vk::device *device = nullptr;
        VkQueue handle = VK_NULL_HANDLE;
        std::uint32_t index = {};


        queue(vk::device *, VkQueue, std::uint32_t);


      public:

Construction

31
32
33
34
35
36
37
        queue();
        queue(queue const &) = delete;
        queue(queue &&);
        ~queue();

        queue &operator=(queue const &) = delete;
        queue &operator=(queue &&) = delete;

Conversions

41
        explicit operator bool() const noexcept;

Fetch the queue

Fetch the family index

50
51
52
53
54
        std::uint32_t family_index() const;
    };


}