Skip to content

Commit 1d10597

Browse files
committed
Added enum value for specifying version 1.4
1 parent 0cda5c7 commit 1d10597

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

vulkan-cpp/types.cppm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -451,9 +451,9 @@ export namespace vk {
451451
};
452452

453453
enum class api_version : uint32_t {
454-
vk_1_2 = VK_API_VERSION_1_2,
455-
vk_1_3 = VK_API_VERSION_1_3, // vulkan version 1.3
456-
// vk_1_2, // vulkan version 1.4
454+
vk_1_2 = VK_MAKE_API_VERSION(0, 1, 2, 0), // vulkan version 1.2
455+
vk_1_3 = VK_MAKE_API_VERSION(0, 1, 3, 0), // vulkan version 1.3
456+
vk_1_4 = VK_MAKE_API_VERSION(0, 1, 4, 0), // vulkan version 1.4
457457
};
458458

459459
struct debug_message_utility {

0 commit comments

Comments
 (0)