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 731c50c commit bf6708dCopy full SHA for bf6708d
1 file changed
lib/API/VK/Device.cpp
@@ -1273,11 +1273,9 @@ class VulkanDevice : public offloadtest::Device {
1273
MeshFeatures.multiviewMeshShader = 0;
1274
MeshFeatures.primitiveFragmentShadingRateMeshShader = 0;
1275
MeshFeatures.meshShaderQueries = 0;
1276
-#ifdef VK_VERSION_1_4
1277
- Features14.pNext = &MeshFeatures;
1278
-#else
1279
- Features13.pNext = &MeshFeatures;
1280
-#endif
+
+ MeshFeatures.pNext = Features.pNext;
+ Features.pNext = &MeshFeatures;
1281
}
1282
1283
DeviceInfo.enabledExtensionCount =
0 commit comments