Comment on Vulkan 1.1 and core feature

This commit is contained in:
Sascha Willems 2019-03-29 22:43:02 +01:00
parent b7ccc6e318
commit 0a8428fb6c

View file

@ -68,6 +68,7 @@ public:
title = "Negative Viewport height"; title = "Negative Viewport height";
settings.overlay = true; settings.overlay = true;
// [POI] VK_KHR_MAINTENANCE1 is required for using negative viewport heights // [POI] VK_KHR_MAINTENANCE1 is required for using negative viewport heights
// Note: This is core as of Vulkan 1.1. So if you target 1.1 you don't have to explicitly enable this
enabledDeviceExtensions.push_back(VK_KHR_MAINTENANCE1_EXTENSION_NAME); enabledDeviceExtensions.push_back(VK_KHR_MAINTENANCE1_EXTENSION_NAME);
} }