tree: 7abff57663eaf20a0fc3ac503974efdce02775d8 [path history] [tgz]
  1. linux/
  2. spirv/
  3. windows/
  4. apidump.h
  5. basic.cpp
  6. CMakeLists.txt
  7. device_limits.cpp
  8. device_limits.h
  9. draw_state.cpp
  10. draw_state.h
  11. generic.h
  12. glsl_compiler.c
  13. image.cpp
  14. image.h
  15. mem_tracker.cpp
  16. mem_tracker.h
  17. multi.cpp
  18. object_track.h
  19. param_checker.cpp
  20. README.md
  21. screenshot.cpp
  22. shader_checker.cpp
  23. shader_checker.h
  24. swapchain.cpp
  25. swapchain.h
  26. threading.h
  27. vk_layer_config.cpp
  28. vk_layer_config.h
  29. vk_layer_data.h
  30. vk_layer_debug_marker_table.cpp
  31. vk_layer_debug_marker_table.h
  32. vk_layer_extension_utils.cpp
  33. vk_layer_extension_utils.h
  34. vk_layer_logging.h
  35. vk_layer_settings.txt
  36. vk_layer_table.cpp
  37. vk_layer_table.h
  38. vk_layer_utils.cpp
  39. vk_layer_utils.h
  40. vk_validation_layer_details.md
layers/README.md

Layer Description and Status

Overview

Layer libraries can be written to intercept or hook VK entry points for various debug and validation purposes. One or more VK entry points can be defined in your Layer library. Undefined entrypoints in the Layer library will be passed to the next Layer which may be the driver. Multiple layer libraries can be chained (actually a hierarchy) together. vkEnumerateInstanceLayerProperties and vkEnumerateDeviceLayerProperties can be called to list the available layers and their properties. Layers can intercept Vulkan instance level entry points in which case they are called an Instance Layer. Layers can intercept device entry points in which case they are called a Device Layer. Instance level entry points are those with VkInstance or VkPhysicalDevice as first parameter. Device level entry points are those with VkDevice, VkCommandBuffer, or VkQueue as the first parameter. Layers that want to intercept both instance and device level entrypoints are called Global Layers. vkXXXXGetProcAddr is used internally by the Layers and Loader to initialize dispatch tables. Device Layers are activated at vkCreateDevice time. Instance Layers are activated at vkCreateInstance. Layers can also be activated via environment variables (VK_INSTANCE_LAYERS or VK_DEVICE_LAYERS).

All validation layers work with the DEBUG_REPORT extension to provide the application or user with validation feedback. When a validation layer is enabled, it will look at the vk_layer_settings.txt file to determine it's behavior. Such as outputing to a file, stdout or debug output (Windows). An application can also register callback functions via the DEBUG_REPORT extension to receive callbacks when the requested validation events happen. Application callbacks happen regardless of the settings in vk_layer_settings.txt

##Layer library example code

Note that some layers are code-generated and will therefore exist in the directory (build_dir)/layers

-include/vkLayer.h - header file for layer code.

Templates

layers/basic.cpp (name=Basic) simple example wrapping a few entrypoints. Shows layer features:

  • Multiple dispatch tables for supporting multiple GPUs.
  • Example layer extension function shown.
  • Layer extension advertised by vkGetXXXExtension().

layers/multi.cpp (name=multi1:multi2) simple example showing multiple layers per library

(build dir)/layer/generic_layer.cpp (name=Generic) - auto generated example wrapping all VK entrypoints.

Layer Details

For 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.

Print API Calls and Parameter Values

(build dir)/layers/api_dump.cpp (name=APIDump) - print out API calls along with parameter values

Print Object Stats

(build dir)/layers/object_track.cpp (name=ObjectTracker) - Track object creation, use, and destruction. As objects are created, they're 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're 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 uses stdout.

Validate Draw State

layers/draw_state.cpp (name=DrawState) - DrawState tracks the Descriptor Set, Pipeline State, and dynamic state performing some point validation as states are created and used, and further validation at each Draw call. Of primary interest is making sure that the resources bound to Descriptor Sets correctly align with the layout specified for the Set. If a Dbg callback function is registered, this layer will use callback function(s) for reporting, otherwise uses stdout.

Track GPU Memory

layers/mem_tracker.cpp (name=MemTracker) - The MemTracker layer tracks memory objects and references and validates that they are managed correctly by the application. This includes tracking object bindings, memory hazards, and memory object lifetimes. MemTracker validates several other hazard-related issues related to command buffers, fences, and memory mapping. If a Dbg callback function is registered, this layer will use callback function(s) for reporting, otherwise uses stdout.

Check parameters

layers/param_checker.cpp (name=ParamChecker) - 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.

Image parameters

layers/image.cpp (name=Image) - The Image layer is intended to validate image parameters, formats, and correct use. Images are a significant enough area that they were given a separate layer. If a Dbg callback function is registered, this layer will use callback function(s) for reporting, otherwise uses stdout.

Check threading

/layers/threading.cpp (name=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.

Swapchain

/layer/swapchain.cpp (name=Swapchain) - Check that WSI extensions are being used correctly.

Validate Shaders

/layers/shader_checker.cpp (name=ShaderChecker) - The ShaderChecker layer 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.

Device Limitations

layers/device_limits.cpp (name=DeviceLimits) - This layer is intended to capture underlying device features and limitations and then flag errors if an app makes requests for unsupported features or exceeding limitations. This layer is a work in progress and currently only flags some high-level errors without flagging errors on specific feature and limitation. If a Dbg callback function is registered, this layer will use callback function(s) for reporting, otherwise uses stdout.

Using Layers

  1. Build VK loader and i965 icd driver using normal steps (cmake and make)

  2. Place libVKLayer.so in the same directory as your VK test or app:

    cp build/layer/libVKLayerBasic.so build/layer/libVKLayerGeneric.so build/tests

    This is required for the Loader to be able to scan and enumerate your library. Alternatively, use the VK_LAYER_PATH environment variable to specify where the layer libraries reside.

  3. Specify which Layers to activate by using vkCreateDevice and/or vkCreateInstance or environment variables.

    export VK_INSTANCE_LAYERS=Basic:Generic export VK_DEVICE_LAYERS=Basic:Generic cd build/tests; ./vkinfo

Tips for writing new layers

  1. Must implement vkGetInstanceProcAddr() (aka GIPA) and vkGetDeviceProcAddr() (aka GDPA);
  2. Must have a local dispatch table to call next layer (see vk_layer.h);
  3. Must have a layer manifest file for each Layer library for Loader to find layer properties (see loader/README.md)
  4. Next layers GXPA can be found in the wrapped instance or device object;
  5. Loader calls a layer's GXPA first so initialization should occur here;
  6. all entrypoints can be wrapped but only will be called after layer is activated via the first vkCreatDevice or vkCreateInstance;
  7. entrypoint names can be any name as specified by the layers vkGetXXXXXProcAddr implementation; exceptions are vkGetXXXXProcAddr, which must have the correct name since the Loader calls these entrypoints;
  8. entrypoint names must be exported to the OSes dynamic loader with VK_LAYER_EXPORT;
  9. Layer naming convention is camel case same name as in library: libVKLayer.so
  10. For multiple layers in one library the manifest file can specify each layer.

Status

Current known issues

  • Layers with multiple layers per library the manifest file parsing in Loader doesn't yet handle this;
  • multi.cpp Layer needs rewrite to allow manifest file to specify multiple layers
  • multi1 and multi2 layers from multi.cpp: only multi1 layer working