Skip to content

Commit dcc23af

Browse files
committed
Fix build on Windows
1 parent 0c4f465 commit dcc23af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pathfinder/gpu/vk/window_builder.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
namespace Pathfinder {
1313

1414
/// List of required validation layers.
15-
const std::vector VALIDATION_LAYERS = {"VK_LAYER_KHRONOS_validation"};
15+
const std::vector<const char*> VALIDATION_LAYERS = {"VK_LAYER_KHRONOS_validation"};
1616

1717
/// List of required device extensions.
18-
const std::vector DEVICE_EXTENSIONS = {
18+
const std::vector<const char*> DEVICE_EXTENSIONS = {
1919
VK_KHR_SWAPCHAIN_EXTENSION_NAME,
2020
};
2121

22-
const std::vector INSTANCE_EXTENSIONS = {
22+
const std::vector<const char*> INSTANCE_EXTENSIONS = {
2323
"VK_KHR_surface",
2424
#ifdef __ANDROID__
2525
"VK_KHR_android_surface",

0 commit comments

Comments
 (0)