-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem.cpp
104 lines (84 loc) · 2.81 KB
/
system.cpp
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/**
* 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/>.
*/
#include "system.h"
#include <iostream>
namespace vfsme
{
void System::Init(uint32_t width, uint32_t height)
{
glfwInit();
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
window = glfwCreateWindow(width, height, "Vulkan window", nullptr, nullptr);
glfwExtensions = glfwGetRequiredInstanceExtensions(&glfwExtensionCount);
}
void System::Destroy()
{
glfwDestroyWindow(window);
glfwTerminate();
}
void System::Loop(Compositor& composer, VkDevice& device)
{
while(!glfwWindowShouldClose(window))
{
glfwPollEvents();
composer.Draw(device);
}
}
void System::CreateSurface(VkInstance& instance, VkSurfaceKHR* surface)
{
VkWin32SurfaceCreateInfoKHR surfaceCreateInfo = {};
surfaceCreateInfo.sType = VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR;
surfaceCreateInfo.hwnd = glfwGetWin32Window(window);
surfaceCreateInfo.hinstance = GetModuleHandle(nullptr);
auto CreateWin32SurfaceKHR = (PFN_vkCreateWin32SurfaceKHR) vkGetInstanceProcAddr(instance, "vkCreateWin32SurfaceKHR");
VkResult result = CreateWin32SurfaceKHR(instance, &surfaceCreateInfo, nullptr, surface);
//glfwCreateWindowSurface(instance, window, nullptr, &surface)
if (result != VK_SUCCESS)
{
throw std::runtime_error("failed to create surface");;
}
}
void System::DestroySurface(VkInstance& instance, VkSurfaceKHR& surface)
{
auto DestroySurfaceKHR = (PFN_vkDestroySurfaceKHR) vkGetInstanceProcAddr(instance, "vkDestroySurfaceKHR");
DestroySurfaceKHR(instance, surface, nullptr);
}
bool System::CheckExtensionsSupport(uint32_t extensionCount, const VkExtensionProperties* extensions) const
{
bool fullySupported = true;
for(unsigned int i = 0; i < glfwExtensionCount; ++i)
{
std::cout << glfwExtensions[i] << std::endl;
bool extensionSupported = false;
for(unsigned int j = 0; j < extensionCount; ++j)
{
if (strcmp(glfwExtensions[i], extensions[j].extensionName) == 0)
{
extensionSupported = true;
break;
}
}
if (extensionSupported == false)
{
std::cout << "Extension not supported:" << glfwExtensions[i] << std::endl;
fullySupported = false;
}
}
return fullySupported;
}
};