jGL
Loading...
Searching...
No Matches
commandPool.h
Go to the documentation of this file.
1#ifndef COMMANDPOOL
2#define COMMANDPOOL
3
5
6namespace jGL::Vulkan
7{
9 {
10
11 public:
12
13 CommandPool() = default;
14
15 CommandPool(const Device & device);
16
17 const VkCommandPool & getVkCommandPool() const { return commandPool; }
18
19 private:
20
21 VkCommandPool commandPool;
22
23 };
24}
25
26#endif /* COMMANDPOOL */
Definition commandPool.h:9
const VkCommandPool & getVkCommandPool() const
Definition commandPool.h:17
Definition device.h:10
Definition buffer.h:10