Home | History | Annotate | only in /external/vulkan-validation-layers
Up to higher level directory
NameDateSize
.appveyor.yml22-Oct-20201.9K
.clang-format22-Oct-2020149
.cmake-format.py22-Oct-2020956
.gitattributes22-Oct-2020421
.travis.yml22-Oct-20206.3K
Android.mk22-Oct-202092
build-android/22-Oct-2020
BUILD.md22-Oct-202030.4K
cmake/22-Oct-2020
CMakeLists.txt22-Oct-202017.6K
CODE_OF_CONDUCT.md22-Oct-2020280
CONTRIBUTING.md22-Oct-202011.8K
docs/22-Oct-2020
external/22-Oct-2020
GOVERNANCE.md22-Oct-20203K
layers/22-Oct-2020
LICENSE.txt22-Oct-202011.4K
MODULE_LICENSE_APACHE222-Oct-20200
NOTICE22-Oct-202010.1K
OWNERS22-Oct-2020226
README.md22-Oct-20202.7K
scripts/22-Oct-2020
tests/22-Oct-2020

README.md

      1 # Vulkan Ecosystem Components
      2 
      3 This project provides the Khronos official Vulkan validation layers for Windows, Linux, Android, and MacOS.
      4 
      5 ## CI Build Status
      6 | Platform | Build Status |
      7 |:--------:|:------------:|
      8 | Linux/Android | [![Build Status](https://travis-ci.org/KhronosGroup/Vulkan-ValidationLayers.svg?branch=master)](https://travis-ci.org/KhronosGroup/Vulkan-ValidationLayers) |
      9 | Windows |[![Build status](https://ci.appveyor.com/api/projects/status/8wduq4r5d9j8nhdv?svg=true)](https://ci.appveyor.com/project/Khronoswebmaster/vulkan-validationlayers/branch/master) |
     10 
     11 
     12 ## Introduction
     13 
     14 Vulkan is an Explicit API, enabling direct control over how GPUs actually work. By design, minimal error checking is done inside
     15 a Vulkan driver. Applications have full control and responsibility for correct operation. Any errors in
     16 how Vulkan is used can result in a crash. This project provides Vulkan validation layers that can be enabled
     17 to assist development by enabling developers to verify their applications correct use of the Vulkan API.
     18 
     19 The following components are available in this repository:
     20 - [*Validation Layers*](layers/)
     21 - [*Tests*](tests/)
     22 
     23 ## Contact Information
     24 * [Tobin Ehlis](mailto:tobine (a] google.com)
     25 * [Mark Lobodzinski](mailto:mark (a] lunarg.com)
     26 
     27 ## Information for Developing or Contributing:
     28 
     29 Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file in this repository for more details.
     30 Please see the [GOVERNANCE.md](GOVERNANCE.md) file in this repository for repository management details.
     31 
     32 ## How to Build and Run
     33 
     34 [BUILD.md](BUILD.md)
     35 Includes directions for building all components as well as running validation tests.
     36 
     37 Information on how to enable the various Validation layers is in
     38 [layers/README.md](layers/README.md).
     39 
     40 ## Version Tagging Scheme
     41 
     42 Updates to the `Vulkan-ValidationLayers` repository which correspond to a new Vulkan specification release are tagged using the following format: `v<`_`version`_`>` (e.g., `v1.1.96`).
     43 
     44 **Note**: Marked version releases have undergone thorough testing but do not imply the same quality level as SDK tags. SDK tags follow the `sdk-<`_`version`_`>.<`_`patch`_`>` format (e.g., `sdk-1.1.92.0`).
     45 
     46 This scheme was adopted following the 1.1.96 Vulkan specification release.
     47 
     48 ## License
     49 This work is released as open source under a Apache-style license from Khronos including a Khronos copyright.
     50 
     51 See COPYRIGHT.txt for a full list of licenses used in this repository.
     52 
     53 ## Acknowledgements
     54 While this project has been developed primarily by LunarG, Inc., there are many other
     55 companies and individuals making this possible: Valve Corporation, funding
     56 project development; Google providing significant contributions to the validation layers;
     57 Khronos providing oversight and hosting of the project.
     58