LunarG

Copyright © 2015-2022 LunarG, Inc.

Creative Commons

Vulkan Configurator allows overriding the layers configuration used by Vulkan applications at runtime.

A Vulkan application may configure layers when creating a Vulkan Instance. This layers configuration may be overridden using Vulkan Configurator globally or for a selected list of Vulkan applications.

Finally Vulkan Configurator allows using layers from user-defined directories.


Platforms Support

OS Windows Linux macOS iOS Android
Support ✔️ ✔️ ✔️

Downloads

Vulkan Configurator is delivered with the Vulkan SDK.


Using the Vulkan Configurator

Vulkan Configurator is a graphical user interface (GUI) that may be launched from the console using vkconfig.

The tool is distributed differently, depending on the platform:

Vulkan Configurator may be used with command line arguments to override layers. Use vkconfig --help in the console for more information.

Vulkan Configurator Animated Presentation

Selecting an Application

The typical use-case for VkConfig is to make changes and run applications while the tool is still open so that any changes made are not carried over when the tool exits. Because of this, VkConfig has an application launcher built in which allows you to select which application to run.

Application Selection

Select between any previously-defined applications by clicking the down-facing error on the right of the application line. The application selection can also be expanded so the application name, executable path, command-line arguments, and even the log file can be edited. To edit these fields in-place, expand the application area by simply expanding the arrow to the left of the word "Application".

Application Selection Expanded

To add or further edit an application in the launcher, click the 3 periods (...) to the far right of the application field. This will expand to an application dialog where applications can be added, edited, or removed.

Application Dialog

Applications Listed by Name

Applications are now listed by name so the same application can be added with different names and different command-line arguments.

For example, "Rise of the Tomb Raider" and "Half-Life 2" are both available through Valve's Steam store. In order to run both application's, the steam executable must first be run, but with different arguments. Because applications are now listed by name, it is now possible to add both to the Application list so they can be triggered individually. This removes the need to edit the command-line when switching between them previously.

This may also prove useful if running the same application with one or more different command-line arguments.


Terminology

***Vulkan Layer***: A layer is an optional library that can intercept Vulkan functions on their way from the Vulkan application down to the Vulkan drivers. Multiple layers can be chained together to use multiple layer functionalities simultaneously.

Vulkan Layers Configuration: A collection of Vulkan Layers executed in a specific order with specific settings for each layer.

***Vulkan Explicit Layers vs Implicit Layer***: An explicit layer has to be explicitly activated by the user from source in vkCreateInstance, using Vulkan Configurator or VK_INSTANCE_LAYERS environment variable. Implicit layers are enabled by their existence on the system by default.

***Vulkan Meta-Layer***: Meta-layers are a special kind of layer which is only available through the desktop Vulkan Loader. While usual layers are associated with one particular library, a meta-layer is actually a collection layer which contains an ordered list of other layers called component layers.

Vulkan Override Layer: The Vulkan Override Layer is an implicit meta-layer found on the system with the name VK_LAYER_LUNARG_override. It is the mechanism used by Vulkan Configurator to override Vulkan applications layers. This layer contains:

Vulkan Layer settings: Per-layer settings loaded by each layer library and stored in the vk_layer_settings.txt file. This file is located either next to the Vulkan application executable or set globally and applied to all Vulkan applications thanks to Vulkan Configurator. These settings are described here for VK_LAYER_KHRONOS_validation and here for other layers created by LunarG.


Vulkan Layers execution order overview

Vulkan Loader


Vulkan Loader and Layers implementation overview

Vulkan Loader

For detailed information, read the Architecture of the Vulkan Loader Interfaces document.

Vulkan Layers Settings

vk_layer_settings.txt

The layer settings are stored into the vk_layer_settings.txt file and read directly by the layers.

When *Vulkan Configurator is used to override layers, the Vulkan application local vk_layer_settings.txt file is ignored by layer ecosystem convention.

Vulkan Configurator does not make any system-wide changes to a system, but it does make user-specific changes. These changes are documented below:

Linux and macOS

Unix systems store files in the following paths:

Windows

Windows systems store files in the following paths:

In addition, Windows system create registry entries in the following locations:

Environment Variables (Deprecated)

OS Environment Variables are the legacy approach to configure layers however they should be considered deprecated in favor of using vk_layer_settings.txt either locally, next to the Vulkan Applications or globally, generated from Vulkan Configurator.