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 695bc18 commit fb1f8ecCopy full SHA for fb1f8ec
library/graphics/RenderManager.cc
@@ -508,7 +508,11 @@ namespace gf {
508
.enable_validation_layers()
509
.enable_extension(VK_EXT_DEBUG_UTILS_EXTENSION_NAME)
510
.set_debug_callback(&debug_callback)
511
+#ifndef NDEBUG
512
+ .add_validation_feature_enable(VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT)
513
// .add_validation_feature_enable(VK_VALIDATION_FEATURE_ENABLE_BEST_PRACTICES_EXT)
514
+ .add_validation_feature_enable(VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXT)
515
+#endif
516
;
517
518
// for (auto extension : extension_names) {
0 commit comments