Lines Matching full:layer

1 # Layer Description and Status
3 ## Layer Library Interface
5 All layer libraries must support the layer library interface defined in
8 [`LoaderAndLayerInterface.md`]: ../loader/LoaderAndLayerInterface.md#layer-library-interface
12 Layer libraries can be written to intercept or hook VK entry points for various
13 debug and validation purposes. One or more VK entry points can be defined in your Layer
14 library. Undefined entrypoints in the Layer library will be passed to the next Layer which
15 may be the driver. Multiple layer libraries can be chained (actually a hierarchy) together.
24 When a validation layer is enabled, it will look for a vk_layer_settings.txt file (see"Using
33 ### Layer library example code
37 `include/vkLayer.h` - header file for layer code.
39 ### Layer Details
40 …r to the document `layers/vk_validation_layer_details.md`. Below is a brief overview of each layer.
43 This is a meta-layer managed by the loader. (name = `VK_LAYER_LUNARG_standard_validation`) - specif…
46layer verifies they exist in the map, flagging errors for unknown objects. As objects are destroye…
49layer does the bulk of the API validation that requires storing state. Some of the state it tracks…
52 …to API calls for validity. If a Dbg callback function is registered, this layer will use callback …
55 …n free-threaded API calls. If a Dbg callback function is registered, this layer will use callback …
58layer was created to address this problem. If loaded in the correct position (last, which is close…
65 `cp build/layer/libVkLayer_threading.so build/tests`
68 …Alternatively, use the `VK_LAYER_PATH` environment variable to specify where the layer libraries r…