-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenderer.cpp
More file actions
597 lines (489 loc) · 20.4 KB
/
Copy pathrenderer.cpp
File metadata and controls
597 lines (489 loc) · 20.4 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
#include "renderer.h"
using namespace Simulator;
Renderer::~Renderer()
{
destroy();
}
bool Renderer::init(
std::string& out_error_message, HINSTANCE app_instance, HWND window
#ifdef DEBUG
, PFN_vkDebugUtilsMessengerCallbackEXT vulkan_debug_callback, void* vulkan_debug_callback_user_data
#endif
)
{
if (m_initialized) {
out_error_message = "Renderer already initialized.";
destroy();
return false;
}
if (volkInitialize() != VK_SUCCESS) {
out_error_message = "Vulkan not found on this system.";
destroy();
return false;
}
uint32_t vk_version = volkGetInstanceVersion();
if (vk_version == 0) {
out_error_message = "Failed to get Vulkan version.";
destroy();
return false;
}
if ((VK_API_VERSION_VARIANT(vk_version) != 0) ||
(VK_API_VERSION_MAJOR(vk_version) != 1) ||
(VK_API_VERSION_MINOR(vk_version) < 3)) {
out_error_message = "Unsupported Vulkan version:" +
std::to_string(VK_API_VERSION_MAJOR(vk_version)) +
"." + std::to_string(VK_API_VERSION_MINOR(vk_version)) +
"." + std::to_string(VK_API_VERSION_PATCH(vk_version)) +
":" + std::to_string(VK_API_VERSION_VARIANT(vk_version));
destroy();
return false;
}
/**************************************************************************************/
#ifdef DEBUG
uint32_t supported_instance_layers_count;
VkResult vk_error = vkEnumerateInstanceLayerProperties(&supported_instance_layers_count, nullptr);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate Vulkan instance layers. VK error:" + std::to_string(vk_error) + ".";
destroy();
return false;
}
if (supported_instance_layers_count == 0) {
out_error_message = "No Vulkan instance layers found.";
destroy();
return false;
}
std::vector<VkLayerProperties> supported_instance_layers(supported_instance_layers_count);
vk_error = vkEnumerateInstanceLayerProperties(&supported_instance_layers_count, supported_instance_layers.data());
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate Vulkan instance layers. VK error:" + std::to_string(vk_error) + ".";
destroy();
return false;
}
std::vector<const char*> instance_layers{
VK_LAYER_KHRONOS_VALIDATION_NAME
};
for (const char* const instance_layer : instance_layers) {
bool found = false;
for (const VkLayerProperties& supported_instance_layer : supported_instance_layers) {
if (std::string(instance_layer) == std::string(supported_instance_layer.layerName)) {
found = true;
break;
}
}
if (!found) {
out_error_message = "Vulkan instance layer \"" + std::string(instance_layer) + "\" not supported.";
destroy();
return false;
}
}
#endif
/**************************************************************************************/
std::vector<const char*> instance_extensions{
VK_KHR_SURFACE_EXTENSION_NAME,
VK_KHR_WIN32_SURFACE_EXTENSION_NAME
#ifdef DEBUG
, VK_EXT_DEBUG_UTILS_EXTENSION_NAME
#endif
};
uint32_t supported_instance_extensions_count;
vk_error = vkEnumerateInstanceExtensionProperties(nullptr, &supported_instance_extensions_count, nullptr);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate Vulkan instance extensions. VK error:" + std::to_string(vk_error) + ".";
destroy();
return false;
}
if (supported_instance_extensions_count == 0) {
out_error_message = "No Vulkan instance extensions found.";
destroy();
return false;
}
std::vector<VkExtensionProperties> supported_instance_extensions(supported_instance_extensions_count);
vk_error = vkEnumerateInstanceExtensionProperties(nullptr, &supported_instance_extensions_count, supported_instance_extensions.data());
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate Vulkan instance extensions. VK error:" + std::to_string(vk_error) + ".";
destroy();
return false;
}
for (const char* const instance_extension : instance_extensions) {
bool found = false;
for (const VkExtensionProperties& supported_instance_extension : supported_instance_extensions) {
if (std::string(instance_extension) == std::string(supported_instance_extension.extensionName)) {
found = true;
break;
}
}
if (!found) {
out_error_message = "Vulkan instance extension \"" + std::string(instance_extension) + "\" not supported.";
destroy();
return false;
}
}
/**************************************************************************************/
VkApplicationInfo app_info{};
app_info.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
app_info.pNext = nullptr;
app_info.pApplicationName = nullptr;
app_info.applicationVersion = 0;
app_info.pEngineName = nullptr;
app_info.engineVersion = 0;
app_info.apiVersion = VK_MAKE_API_VERSION(0, 1, 3, 0);
#ifdef DEBUG
VkDebugUtilsMessengerCreateInfoEXT debug_messenger_info{};
debug_messenger_info.sType =
VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT;
debug_messenger_info.messageSeverity =
VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT |
VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT |
VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT |
VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT;
debug_messenger_info.messageType =
VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT |
VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT |
VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT;
debug_messenger_info.pfnUserCallback = vulkan_debug_callback;
debug_messenger_info.pUserData = vulkan_debug_callback_user_data;
#endif
VkInstanceCreateInfo inst_info{};
inst_info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
#ifdef DEBUG
inst_info.pNext = &debug_messenger_info;
#else
inst_info.pNext = nullptr;
#endif
inst_info.flags = 0;
inst_info.pApplicationInfo = &app_info;
#ifdef DEBUG
inst_info.enabledLayerCount = static_cast<uint32_t>(instance_layers.size());
inst_info.ppEnabledLayerNames = instance_layers.data();
#else
inst_info.enabledLayerCount = 0;
inst_info.ppEnabledLayerNames = nullptr;
#endif
inst_info.enabledExtensionCount = static_cast<uint32_t>(instance_extensions.size());
inst_info.ppEnabledExtensionNames = instance_extensions.data();
vk_error = vkCreateInstance(&inst_info, nullptr, &m_vk_instance);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to create Vulkan instance. VK error:" + std::to_string(vk_error) + ".";
destroy();
return false;
}
volkLoadInstanceOnly(m_vk_instance);
/**************************************************************************************/
#ifdef DEBUG
vk_error = vkCreateDebugUtilsMessengerEXT(m_vk_instance, &debug_messenger_info, nullptr, &m_vk_debug_messenger);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to create Vulkan debug messenger. VK error:" + std::to_string(vk_error) + ".";
destroy();
return false;
}
#endif
/**************************************************************************************/
VkWin32SurfaceCreateInfoKHR create_info{};
create_info.sType = VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR;
create_info.pNext = nullptr;
create_info.flags = 0;
create_info.hinstance = app_instance;
create_info.hwnd = window;
vk_error = vkCreateWin32SurfaceKHR(m_vk_instance, &create_info, nullptr, &m_vk_surface);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to create Vulkan rendering surface. VK error:" + std::to_string(vk_error) + ".";
destroy();
return false;
}
m_initialized = true;
return true;
}
void Renderer::destroy()
{
if (m_vk_logical_device != VK_NULL_HANDLE) {
vkDestroyDevice(m_vk_logical_device, nullptr);
m_vk_logical_device = VK_NULL_HANDLE;
}
if ((m_vk_instance != VK_NULL_HANDLE) && (m_vk_surface != VK_NULL_HANDLE)) {
vkDestroySurfaceKHR(m_vk_instance, m_vk_surface, nullptr);
m_vk_surface = VK_NULL_HANDLE;
}
#ifdef DEBUG
if ((m_vk_instance != VK_NULL_HANDLE) && (m_vk_debug_messenger != VK_NULL_HANDLE)) {
vkDestroyDebugUtilsMessengerEXT(m_vk_instance, m_vk_debug_messenger, nullptr);
m_vk_debug_messenger = VK_NULL_HANDLE;
}
#endif
if (m_vk_instance != VK_NULL_HANDLE) {
vkDestroyInstance(m_vk_instance, nullptr);
m_vk_instance = VK_NULL_HANDLE;
}
m_initialized = false;
}
bool Renderer::getSupportedPhysicalDevices(std::vector<VkPhysicalDevice>& out_supported_devices, std::string& out_error_message)
{
if (!m_initialized) {
out_error_message = "Renderer not initialized.";
return false;
}
uint32_t physical_devices_count;
VkResult vk_error = vkEnumeratePhysicalDevices(m_vk_instance, &physical_devices_count, nullptr);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate Vulkan physical devices. VK error:" + std::to_string(vk_error) + ".";
return false;
}
if (physical_devices_count == 0) {
out_error_message = "No Vulkan physical devices found.";
return false;
}
std::vector<VkPhysicalDevice> physical_devices(physical_devices_count);
vk_error = vkEnumeratePhysicalDevices(m_vk_instance, &physical_devices_count, physical_devices.data());
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate Vulkan physical devices. VK error:" + std::to_string(vk_error) + ".";
return false;
}
/**************************************************************************************/
for (const VkPhysicalDevice& physical_device : physical_devices) {
VkPhysicalDeviceProperties physical_device_properties;
vkGetPhysicalDeviceProperties(physical_device, &physical_device_properties);
/**************************************************************************************/
#ifdef DEBUG
uint32_t supported_device_layers_count;
VkResult vk_error = vkEnumerateDeviceLayerProperties(physical_device, &supported_device_layers_count, nullptr);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate layers for Vulkan physical device: \"" + std::string(physical_device_properties.deviceName) + "\". "
"VK error:" + std::to_string(vk_error) + ".";
return false;
}
if (supported_device_layers_count == 0) {
out_error_message = "No layers found for Vulkan physical device: \"" + std::string(physical_device_properties.deviceName) + "\".";
return false;
}
std::vector<VkLayerProperties> supported_device_layers(supported_device_layers_count);
vk_error = vkEnumerateDeviceLayerProperties(physical_device, &supported_device_layers_count, supported_device_layers.data());
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate layers for Vulkan physical device: \"" + std::string(physical_device_properties.deviceName) + "\". "
"VK error:" + std::to_string(vk_error) + ".";
return false;
}
bool device_supported = true;
std::vector<const char*> device_layers{
VK_LAYER_KHRONOS_VALIDATION_NAME
};
for (const char* const device_layer : device_layers) {
bool device_layer_found = false;
for (const VkLayerProperties& supported_device_layer : supported_device_layers) {
if (std::string(device_layer) == std::string(supported_device_layer.layerName)) {
device_layer_found = true;
break;
}
}
if (!device_layer_found) {
device_supported = false;
}
}
if (!device_supported) {
break;
}
#endif
/**************************************************************************************/
uint32_t queue_families_count;
vkGetPhysicalDeviceQueueFamilyProperties(physical_device, &queue_families_count, nullptr);
if (queue_families_count == 0) {
out_error_message = "No Vulkan queue families found for physical device \"" + std::string(physical_device_properties.deviceName) + "\".";
return false;
}
std::vector<VkQueueFamilyProperties> queue_families_props(queue_families_count);
vkGetPhysicalDeviceQueueFamilyProperties(physical_device, &queue_families_count, queue_families_props.data());
bool graphics_queue_family_found = false;
bool present_queue_family_found = false;
for (uint32_t i = 0; i < queue_families_props.size(); i++) {
if (queue_families_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) {
graphics_queue_family_found = true;
}
VkBool32 presentation_supported = false;
vk_error = vkGetPhysicalDeviceSurfaceSupportKHR(physical_device, i, m_vk_surface, &presentation_supported);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to query Vulkan physical device \"" + std::string(physical_device_properties.deviceName) +
"\" for presentation support. VK error:" + std::to_string(vk_error) + ".";
return false;
}
if (presentation_supported) {
present_queue_family_found = true;
}
if (graphics_queue_family_found && present_queue_family_found) {
break;
}
}
device_supported = graphics_queue_family_found && present_queue_family_found;
if (device_supported) {
out_supported_devices.push_back(physical_device);
}
}
/**************************************************************************************/
if (out_supported_devices.empty()) {
out_error_message = "No supported Vulkan physical devices found.";
return false;
}
return true;
}
bool Renderer::createLogicalDevice(const VkPhysicalDevice& physical_device, std::string& out_error_message)
{
if (!m_initialized) {
out_error_message = "Renderer not initialized.";
return false;
}
if (m_vk_logical_device != VK_NULL_HANDLE) {
out_error_message = "Vulkan logical device already created.";
return false;
}
VkPhysicalDeviceProperties physical_device_properties;
vkGetPhysicalDeviceProperties(physical_device, &physical_device_properties);
/**************************************************************************************/
#ifdef DEBUG
std::vector<const char*> device_layers{
VK_LAYER_KHRONOS_VALIDATION_NAME
};
uint32_t supported_device_layers_count;
VkResult vk_error = vkEnumerateDeviceLayerProperties(physical_device, &supported_device_layers_count, nullptr);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate layers for Vulkan physical device: \"" + std::string(physical_device_properties.deviceName) + "\". "
"VK error:" + std::to_string(vk_error) + ".";
return false;
}
if (supported_device_layers_count == 0) {
out_error_message = "No layers found for Vulkan physical device: \"" + std::string(physical_device_properties.deviceName) + "\".";
return false;
}
std::vector<VkLayerProperties> supported_device_layers(supported_device_layers_count);
vk_error = vkEnumerateDeviceLayerProperties(physical_device, &supported_device_layers_count, supported_device_layers.data());
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate layers for Vulkan physical device: \"" + std::string(physical_device_properties.deviceName) + "\". "
"VK error:" + std::to_string(vk_error) + ".";
return false;
}
for (const char* const device_layer : device_layers) {
bool layer_found = false;
for (const VkLayerProperties& supported_device_layer : supported_device_layers) {
if (std::string(device_layer) == std::string(supported_device_layer.layerName)) {
layer_found = true;
break;
}
}
if (!layer_found) {
out_error_message = "Layer \"" + std::string(device_layer) + "\" not supported for Vulkan physical device: \"" +
std::string(physical_device_properties.deviceName) + "\".";
return false;
}
}
#endif
/**************************************************************************************/
uint32_t queue_families_count;
vkGetPhysicalDeviceQueueFamilyProperties(physical_device, &queue_families_count, nullptr);
if (queue_families_count == 0) {
out_error_message = "No Vulkan queue families found for physical device \"" + std::string(physical_device_properties.deviceName) + "\".";
return false;
}
std::vector<VkQueueFamilyProperties> queue_families_props(queue_families_count);
vkGetPhysicalDeviceQueueFamilyProperties(physical_device, &queue_families_count, queue_families_props.data());
bool graphics_queue_family_found = false;
bool present_queue_family_found = false;
uint32_t graphics_queue_family_idx = 0;
uint32_t present_queue_family_idx = 0;
for (uint32_t i = 0; i < queue_families_props.size(); i++) {
if (queue_families_props[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) {
graphics_queue_family_idx = i;
graphics_queue_family_found = true;
}
VkBool32 presentation_supported = false;
vk_error = vkGetPhysicalDeviceSurfaceSupportKHR(physical_device, i, m_vk_surface, &presentation_supported);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to query Vulkan physical device \"" + std::string(physical_device_properties.deviceName) +
"\" for presentation support. VK error:" + std::to_string(vk_error) + ".";
return false;
}
if (presentation_supported) {
present_queue_family_idx = i;
present_queue_family_found = true;
}
if (graphics_queue_family_found && present_queue_family_found) {
break;
}
}
if (!(graphics_queue_family_found && present_queue_family_found)) {
out_error_message = "No Vulkan supported queue families found for physical device \"" + std::string(physical_device_properties.deviceName) + "\".";
return false;
}
/**************************************************************************************/
float device_queue_priority = 1.0f;
VkDeviceQueueCreateInfo device_queue_create_info{};
device_queue_create_info.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
device_queue_create_info.pNext = nullptr;
device_queue_create_info.flags = 0;
device_queue_create_info.queueFamilyIndex = graphics_queue_family_idx;
device_queue_create_info.queueCount = 1;
device_queue_create_info.pQueuePriorities = &device_queue_priority;
std::vector<VkDeviceQueueCreateInfo> device_queue_create_infos{ device_queue_create_info };
if (present_queue_family_idx != graphics_queue_family_idx) {
device_queue_create_info.queueFamilyIndex = present_queue_family_idx;
device_queue_create_infos.push_back(device_queue_create_info);
}
VkPhysicalDeviceFeatures enabled_device_features{};
VkDeviceCreateInfo device_create_info{};
device_create_info.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
device_create_info.pNext = nullptr;
device_create_info.flags = 0;
device_create_info.queueCreateInfoCount = static_cast<uint32_t>(device_queue_create_infos.size());
device_create_info.pQueueCreateInfos = device_queue_create_infos.data();
#ifdef DEBUG
device_create_info.enabledLayerCount = static_cast<uint32_t>(device_layers.size());
device_create_info.ppEnabledLayerNames = device_layers.data();
#else
device_create_info.enabledLayerCount = 0;
device_create_info.ppEnabledLayerNames = nullptr;
#endif
device_create_info.enabledExtensionCount = 0;
device_create_info.ppEnabledExtensionNames = nullptr;
device_create_info.pEnabledFeatures = &enabled_device_features;
vk_error = vkCreateDevice(physical_device, &device_create_info, nullptr, &m_vk_logical_device);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to create Vulkan logical device. VK error:" + std::to_string(vk_error) + ".";
destroy();
return false;
}
volkLoadDevice(m_vk_logical_device);
return true;
}
bool Renderer::areDeviceExtensionsSupported(const VkPhysicalDevice& physical_device, const std::vector<const char*>& extensions, std::string& out_error_message)
{
VkPhysicalDeviceProperties device_properties;
vkGetPhysicalDeviceProperties(physical_device, &device_properties);
uint32_t supported_extensions_count;
VkResult vk_error = vkEnumerateDeviceExtensionProperties(physical_device, nullptr, &supported_extensions_count, nullptr);
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate extensions for Vulkan physical device: \"" + std::string(device_properties.deviceName) + "\". "
"VK error:" + std::to_string(vk_error) + ".";
return false;
}
if (supported_extensions_count == 0) {
out_error_message = "No device extensions found for for Vulkan physical device: \"" + std::string(device_properties.deviceName) + "\".";
return false;
}
std::vector<VkExtensionProperties> supported_extensions(supported_extensions_count);
vk_error = vkEnumerateDeviceExtensionProperties(physical_device, nullptr, &supported_extensions_count, supported_extensions.data());
if (vk_error != VK_SUCCESS) {
out_error_message = "Failed to enumerate extensions for Vulkan physical device: \"" + std::string(device_properties.deviceName) + "\". "
"VK error:" + std::to_string(vk_error) + ".";
return false;
}
for (const char* const extension : extensions) {
bool found = false;
for (const VkExtensionProperties& supported_extension : supported_extensions) {
if (std::string(extension) == std::string(supported_extension.extensionName)) {
found = true;
break;
}
}
if (!found) {
out_error_message = "Extension \"" + std::string(extension) + "\" not supported for Vulkan physical device: \"" +
std::string(device_properties.deviceName) + "\".";
return false;
}
}
return true;
}