We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5231929 commit 7460d90Copy full SHA for 7460d90
src/main/java/net/vulkanmod/vulkan/device/Device.java
@@ -113,9 +113,6 @@ static int getVkVer() {
113
var a = stack.mallocInt(1);
114
vkEnumerateInstanceVersion(a);
115
int vkVer1 = a.get(0);
116
- if (VK_VERSION_MINOR(vkVer1) < 2) {
117
- throw new RuntimeException("Vulkan 1.2 not supported: Only Has: %s".formatted(decDefVersion(vkVer1)));
118
- }
119
return vkVer1;
120
}
121
0 commit comments