Home | History | Annotate | only in /external/vulkan-validation-layers
Up to higher level directory
NameDateSize
.clang-format05-Oct-2017116
.gitignore05-Oct-2017460
Android.mk05-Oct-201746
build-android/05-Oct-2017
BUILD.md05-Oct-201714.9K
build_windows_targets.bat05-Oct-20173.5K
cmake/05-Oct-2017
CMakeLists.txt05-Oct-201713K
common/05-Oct-2017
CONTRIBUTING.md05-Oct-20175.8K
COPYRIGHT.txt05-Oct-20176.4K
demos/05-Oct-2017
determine_vs_version.py05-Oct-20173.7K
generator.py05-Oct-201720.7K
glslang_revision05-Oct-201741
include/05-Oct-2017
layers/05-Oct-2017
libs/05-Oct-2017
LICENSE.txt05-Oct-201710.1K
loader/05-Oct-2017
lvl_genvk.py05-Oct-201710.3K
parameter_validation_generator.py05-Oct-201753.9K
README.md05-Oct-20172.7K
reg.py05-Oct-201739.8K
source_line_info.py05-Oct-20171.5K
spirv-headers_revision05-Oct-201741
spirv-tools_revision05-Oct-201741
tests/05-Oct-2017
threading_generator.py05-Oct-201722K
unique_objects_generator.py05-Oct-201738.9K
update_external_sources.bat05-Oct-201711.7K
update_external_sources.sh05-Oct-20173.7K
vk-generate.py05-Oct-201711.9K
vk-layer-introspect.py05-Oct-201713.2K
vk.xml05-Oct-2017390.5K
vk_helper.py05-Oct-2017130.4K
vk_layer_documentation_generate.py05-Oct-201721.2K
vulkan.py05-Oct-201758.6K
windowsRuntimeInstaller/05-Oct-2017

README.md

      1 # Vulkan Ecosystem Components
      2 
      3 This project provides Khronos official ICD loader and validation layers for Vulkan developers on Windows and Linux.
      4 
      5 ## Introduction
      6 
      7 Vulkan is an Explicit API, enabling direct control over how GPUs actually work. No (or very little) validation
      8 or error checking is done inside a Vulkan driver. Applications have full control and responsibility. Any errors in
      9 how Vulkan is used often result in a crash. This project provides standard validation layers that can be enabled
     10 to ease development by helping developers verify their applications correctly use the Vulkan API.
     11 
     12 Vulkan supports multiple GPUs and multiple global contexts (VkInstance). The ICD loader is necessary to
     13 support multiple GPUs  and the VkInstance level Vulkan commands.  Additionally, the loader manages inserting
     14 Vulkan layer libraries, including validation layers between the application and the ICD.
     15 
     16 The following components are available in this repository:
     17 - Vulkan header files
     18 - [*ICD Loader*](loader/)
     19 - [*Validation Layers*](layers/)
     20 - Demos and tests for the loader and validation layers
     21 
     22 ## Contributing
     23 
     24 If you intend to contribute, the preferred work flow is for you to develop your contribution
     25 in a fork of this repo in your GitHub account and then submit a pull request.
     26 Please see the [CONTRIBUTING](CONTRIBUTING.md) file in this respository for more details
     27 
     28 ## How to Build and Run
     29 
     30 [BUILD.md](BUILD.md)
     31 includes directions for building all the components, running the validation tests and running the demo applications.
     32 
     33 Information on how to enable the various Validation layers is in
     34 [layers/README.md](layers/README.md).
     35 
     36 Architecture and interface information for the loader is in
     37 [loader/LoaderAndLayerInterface.md](loader/LoaderAndLayerInterface.md).
     38 
     39 #### **NOTE**: Update Nvidia Drivers
     40 - A recent glslang change exposed a bug in the texel fetch behavior on Nvidia devices under certain situations.
     41 - Previously, we reverted the glslang change which exposed it.
     42 - Nvidia has since resolved the issue, and we are now removing the workaround.
     43 - Driver installs with the fix are available on their download page, just look for:
     44  - Linux Drivers starting with version 367.35
     45  - Windows Drivers starting at version 372.54
     46 
     47 ## License
     48 This work is released as open source under a Apache-style license from Khronos including a Khronos copyright.
     49 
     50 See COPYRIGHT.txt for a full list of licenses used in this repository.
     51 
     52 ## Acknowledgements
     53 While this project has been developed primarily by LunarG, Inc; there are many other
     54 companies and individuals making this possible: Valve Corporation, funding
     55 project development; Google providing significant contributions to the validation layers;
     56 Khronos providing oversight and hosting of the project.
     57 
     58 
     59