• Home
Name Date Size #Lines LOC

..--

json/03-May-2024-147141

CMakeLists.txtD03-May-202413.6 KiB260239

README.mdD03-May-20247.3 KiB8555

VkLayer_core_validation.defD03-May-20241.1 KiB3128

VkLayer_object_lifetimes.defD03-May-20241.1 KiB3128

VkLayer_stateless_validation.defD03-May-20241.1 KiB3128

VkLayer_thread_safety.defD03-May-20241.1 KiB3128

VkLayer_unique_objects.defD03-May-20241.1 KiB3128

android_ndk_types.hD03-May-20245.1 KiB12370

buffer_validation.cppD03-May-2024329.4 KiB5,1224,339

buffer_validation.hD03-May-20241.8 KiB5122

convert_to_renderpass2.cppD03-May-202410.7 KiB203172

convert_to_renderpass2.hD03-May-2024946 253

core_validation.cppD03-May-2024823.4 KiB13,53511,419

core_validation.hD03-May-2024136.8 KiB1,6181,446

core_validation_error_enums.hD03-May-202429.9 KiB273124

core_validation_types.hD03-May-202448.2 KiB1,155915

descriptor_sets.cppD03-May-2024144.3 KiB2,5652,184

descriptor_sets.hD03-May-202434.1 KiB604403

gpu_validation.cppD03-May-202459.3 KiB1,216960

gpu_validation.hD03-May-20243.3 KiB9750

hash_util.hD03-May-20246.1 KiB16595

hash_vk_types.hD03-May-20243.7 KiB10368

object_lifetime_validation.hD03-May-202414.1 KiB266195

object_tracker_utils.cppD03-May-202451.8 KiB922786

old_vuid_to_new_mapping.txtD03-May-2024148.8 KiB3,1083,107

parameter_name.hD03-May-20245.4 KiB13151

parameter_validation_utils.cppD03-May-2024195 KiB2,9432,473

shader_validation.cppD03-May-2024113.7 KiB2,3641,919

shader_validation.hD03-May-20248.1 KiB212136

stateless_validation.hD03-May-202458.2 KiB1,054605

vk_format_utils.cppD03-May-202464.7 KiB1,3411,188

vk_format_utils.hD03-May-20248.9 KiB189157

vk_layer_config.cppD03-May-202412.4 KiB364275

vk_layer_config.hD03-May-20243.1 KiB7345

vk_layer_data.hD03-May-20241.7 KiB5525

vk_layer_extension_utils.cppD03-May-20242.1 KiB6733

vk_layer_extension_utils.hD03-May-20241.5 KiB4111

vk_layer_logging.hD03-May-202459 KiB1,2561,000

vk_layer_settings.txtD03-May-20243.8 KiB8276

vk_layer_utils.cppD03-May-202410.6 KiB224162

vk_layer_utils.hD03-May-20245.9 KiB157100

vk_loader_layer.hD03-May-20241.5 KiB4721

vk_loader_platform.hD03-May-202413.9 KiB368242

vk_validation_error_messages.hD03-May-20241.5 MiB5,1125,079

xxhash.cD03-May-202429 KiB889604

xxhash.hD03-May-202412.3 KiB294109

README.md

1# Layer Description and Status
2
3## Layer Library Interface
4
5All layer libraries must support the layer library interface defined in
6[`LoaderAndLayerInterface.md`][].
7
8[`LoaderAndLayerInterface.md`]: ../loader/LoaderAndLayerInterface.md#layer-library-interface
9
10## Overview
11
12Layer libraries can be written to intercept or hook VK entry points for various
13debug and validation purposes.  One or more VK entry points can be defined in your Layer
14library.  Undefined entrypoints in the Layer library will be passed to the next Layer which
15may be the driver.  Multiple layer libraries can be chained (actually a hierarchy) together.
16vkEnumerateInstanceLayerProperties can be called to list the
17available layers and their properties.  Layers can intercept all Vulkan commands
18that take a dispatchable object as it's first argument. I.e.  VkInstance, VkPhysicalDevice,
19VkDevice, VkCommandBuffer, and VkQueue.
20vkXXXXGetProcAddr is used internally by the Layers and Loader to initialize dispatch tables.
21Layers can also be activated via the VK_INSTANCE_LAYERS environment variable.
22
23All validation layers work with the DEBUG_REPORT extension to provide validation feedback.
24When a validation layer is enabled, it will look for a vk_layer_settings.txt file (see"Using
25Layers" section below for more details) to define its logging behavior, which can include
26sending output to a file, stdout, or debug output (Windows). Applications can also register
27debug callback functions via the DEBUG_REPORT extension to receive callbacks when validation
28events occur. Application callbacks are independent of settings in a vk_layer_settings.txt
29file which will be carried out separately. If no vk_layer_settings.txt file is present and
30no application callbacks are registered, error messages will be output through default
31logging callbacks.
32
33### Layer library example code
34
35Note that some layers are code-generated and will therefore exist in the directory `(build_dir)/layers`
36
37`include/vkLayer.h` - header file for layer code.
38
39### Layer Details
40For complete details of current validation layers, including all of the validation checks that they perform, please refer to the document `layers/vk_validation_layer_details.md`. Below is a brief overview of each layer.
41
42### Standard Validation
43This is a meta-layer managed by the loader. (name = `VK_LAYER_LUNARG_standard_validation`) - specifying this layer name will cause the loader to load the all of the standard validation layers (listed below) in the following optimal order:  `VK_LAYER_GOOGLE_threading`, `VK_LAYER_LUNARG_parameter_validation`, `VK_LAYER_LUNARG_object_tracker`, `VK_LAYER_LUNARG_core_validation`, and `VK_LAYER_GOOGLE_unique_objects`. Other layers can be specified and the loader will remove duplicates.
44
45### Object Validation and Statistics
46(build dir)/layers/object_tracker.cpp (name=`VK_LAYER_LUNARG_object_tracker`) - Track object creation, use, and destruction. As objects are created they are stored in a map. As objects are used the layer verifies they exist in the map, flagging errors for unknown objects. As objects are destroyed they are removed from the map. At `vkDestroyDevice()` and `vkDestroyInstance()` times, if any objects have not been destroyed they are reported as leaked objects. If a Dbg callback function is registered this layer will use callback function(s) for reporting, otherwise it will use stdout.
47
48### Validate API State and Shaders
49layers/core\_validation.cpp (name=`VK_LAYER_LUNARG_core_validation`) - The core\_validation layer does the bulk of the API validation that requires storing state. Some of the state it tracks includes the Descriptor Set, Pipeline State, Shaders, and dynamic state, and memory objects and bindings. It performs some point validation as states are created and used, and further validation Draw call and QueueSubmit time. Of primary interest is making sure that the resources bound to Descriptor Sets correctly align with the layout specified for the Set. Also, all of the image and buffer layouts are validated to make sure explicit layout transitions are properly managed. Related to memory, core\_validation includes tracking object bindings, memory hazards, and memory object lifetimes. It also validates several other hazard-related issues related to command buffers, fences, and memory mapping. Additionally core\_validation include shader validation (formerly separate shader\_checker layer) that inspects the SPIR-V shader images and fixed function pipeline stages at PSO creation time. It flags errors when inconsistencies are found across interfaces between shader stages. The exact behavior of the checks depends on the pair of pipeline stages involved. If a Dbg callback function is registered, this layer will use callback function(s) for reporting, otherwise uses stdout.  This layer also validates correct usage of image- and buffer-related APIs, including image and buffer parameters, formats, and correct use.
50
51### Check parameters
52(build_dir)/layers/parameter_validation.cpp (name=`VK_LAYER_LUNARG_parameter_validation`) - Check the input parameters to API calls for validity. If a Dbg callback function is registered, this layer will use callback function(s) for reporting, otherwise uses stdout.
53
54### Check threading
55(build_dir)/layers/threading.cpp (name=`VK_LAYER_GOOGLE_threading`) - Check multithreading of API calls for validity. Currently this checks that only one thread at a time uses an object in free-threaded API calls. If a Dbg callback function is registered, this layer will use callback function(s) for reporting, otherwise uses stdout.
56
57### Unique Objects
58(build dir)/layers/layer_chassis_dispatch.cpp (name=`VK_LAYER_GOOGLE_unique_objects`) - The Vulkan specification allows objects that have non-unique handles. This makes tracking object lifetimes difficult in that it is unclear which object is being referenced on deletion. The unique_objects layer was created to address this problem. If loaded in the correct position (last, which is closest to the display driver) it will alias all objects with a unique object representation, allowing proper object lifetime tracking. This layer does no validation on its own and may not be required for the proper operation of all layers or all platforms. One sign that it is needed is the appearance of errors emitted from the object_tracker layer indicating the use of previously destroyed objects.
59
60## Using Layers
61
621. Build VK loader using normal steps (cmake and make)
632. Place `libVkLayer_<name>.so` in the same directory as your VK test or app:
64
65    `cp build/layer/libVkLayer_threading.so  build/tests`
66
67    This is required for the Loader to be able to scan and enumerate your library.
68    Alternatively, use the `VK_LAYER_PATH` environment variable to specify where the layer libraries reside.
69
703. To specify how your layers should behave, create a vk_layer_settings.txt file. This file can exist in the same directory as your app or in a directory given by the `VK_LAYER_SETTINGS_PATH` environment variable. Alternatively, you can use any filename you want if you set `VK_LAYER_SETTINGS_PATH` to the full path of the file, rather than the directory that contains it.
71
72    Model the file after the following example:  [*vk_layer_settings.txt*](vk_layer_settings.txt)
73
744. Specify which layers to activate using environment variables.
75
76    `export VK\_INSTANCE\_LAYERS=VK\_LAYER\_LUNARG\_parameter\_validation:VK\_LAYER\_LUNARG\_core\_validation`
77    `cd build/tests; ./vkinfo`
78
79
80## Status
81
82
83### Current known issues
84
85