We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c4f465 commit dcc23afCopy full SHA for dcc23af
pathfinder/gpu/vk/window_builder.h
@@ -12,14 +12,14 @@
12
namespace Pathfinder {
13
14
/// List of required validation layers.
15
-const std::vector VALIDATION_LAYERS = {"VK_LAYER_KHRONOS_validation"};
+const std::vector<const char*> VALIDATION_LAYERS = {"VK_LAYER_KHRONOS_validation"};
16
17
/// List of required device extensions.
18
-const std::vector DEVICE_EXTENSIONS = {
+const std::vector<const char*> DEVICE_EXTENSIONS = {
19
VK_KHR_SWAPCHAIN_EXTENSION_NAME,
20
};
21
22
-const std::vector INSTANCE_EXTENSIONS = {
+const std::vector<const char*> INSTANCE_EXTENSIONS = {
23
"VK_KHR_surface",
24
#ifdef __ANDROID__
25
"VK_KHR_android_surface",
0 commit comments