-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.h
48 lines (39 loc) · 1.75 KB
/
commands.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* Copyright (C) 2016 Nigel Williams
*
* Vulkan Free Surface Modeling Engine (VFSME) is free software:
* you can redistribute it and/or modify it under the terms of the
* GNU Lesser General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef commands_h
#define commands_h
#include <vulkan/vulkan.h>
namespace vfsme
{
class Commands
{
public:
explicit Commands(const VkPhysicalDeviceMemoryProperties& memProperties);
~Commands() = default;
///@note Only define copy and move constructors and assignment operators if they are actually required
Commands(const Commands&) = delete;
Commands(Commands&&) = delete;
Commands& operator=(const Commands&) = delete;
Commands& operator=(Commands &&) = delete;
protected:
void SetupImage(VkDevice& device, VkImage& image, const VkExtent3D& extent, const VkFormat& format, VkDeviceMemory& memory, VkMemoryPropertyFlags properties, VkBufferUsageFlags usage);
void SetupBuffer(VkDevice& device, VkBuffer& buffer, VkDeviceMemory& memory, VkDeviceSize size, VkMemoryPropertyFlags properties, VkBufferUsageFlags usage);
uint32_t GetMemoryTypeIndex(VkDevice& device, const VkMemoryRequirements& memReqs, const VkPhysicalDeviceMemoryProperties& props, VkMemoryPropertyFlags propFlags, uint32_t& allocSize) const;
const VkPhysicalDeviceMemoryProperties& memProperties;
};
};
#endif