-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
93 lines (71 loc) · 2.32 KB
/
main.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
/**
* 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 <vulkan/vulkan.h>
#include "renderer.h"
#include "system.h"
#include "controller.h"
#include "compositor.h"
#include <iostream>
#include <vector>
#include <cstring>
#include <fstream>
#include <cstdio>
#include <limits>
#include <stdexcept>
int main()
{
///@todo Make window size configurable from command line arguments
///@note Static window size for now
/// If dynamic window resizing is added, then swap chain reconstruction is necessary
const uint32_t width = 1920;
const uint32_t height = 1080;
try
{
vfsme::System& window = vfsme::System::GetSingletonInstance();
window.Init(width, height);
vfsme::Controller devCtrl;
devCtrl.Init();
devCtrl.SetupQueue();
VkSurfaceKHR surface;
window.CreateSurface(devCtrl.GetInstance(), &surface);
devCtrl.SetupDevice(surface);
devCtrl.Configure(surface);
vfsme::Compositor composer(devCtrl.GetMemoryProperties());
bool supported = devCtrl.PresentModeSupported(surface, composer.GetPresentMode()) &&
devCtrl.SurfaceFormatSupported(surface, composer.GetSurfaceFormat());
if (supported)
{
composer.Init(devCtrl.GetDevice(),
surface, width, height,
devCtrl.GetQueueFamilyId(),
devCtrl.GetGraphicsQueueIndex(),
devCtrl.GetPresentQueueIndex(),
devCtrl.GetComputeQueueIndex());
window.Loop(composer, devCtrl.GetDevice());
}
composer.Destroy(devCtrl.GetDevice());
window.DestroySurface(devCtrl.GetInstance(), surface);
devCtrl.Destroy();
window.Destroy();
}
catch (const std::runtime_error& e)
{
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}
return 0;
}