Validation Layers

The area of Vulkan that apps interact with: the loader, is very powerful and flexible. Read more about it here. Its design enables it to chain API calls through configurable layers, eg for overlays, and most importantly for us: Validation Layers.

Vulkan Loader

As suggested by the Khronos Group, the guide strongly recommends using Vulkan Configurator (GUI) for validation layers. It is included in the Vulkan SDK, just keep it running while developing Vulkan applications, and ensure it is setup to inject validation layers into all detected applications, with Synchronization Validation enabled. This approach provides a lot of flexibility at runtime, including the ability to have VkConfig break the debugger on encountering an error, and also eliminates the need for validation layer specific code in the applications.

Note: modify your development (or desktop) environment's PATH (or use LD_LIBRARY_PATH on supported systems) to make sure the SDK's binaries (shared libraries) are visible first.

Vulkan Configurator