Home | History | Annotate | only in /external/vulkan-validation-layers
Up to higher level directory
NameDateSize
.appveyor.yml21-Aug-20182.1K
.clang-format21-Aug-2018149
.gitattributes21-Aug-2018398
.travis.yml21-Aug-20185.1K
Android.mk21-Aug-201892
build-android/21-Aug-2018
BUILD.md21-Aug-201820.7K
build_windows_targets.bat21-Aug-20184.8K
cmake/21-Aug-2018
CMakeLists.txt21-Aug-201820.1K
common/21-Aug-2018
CONTRIBUTING.md21-Aug-20188.5K
COPYRIGHT.txt21-Aug-20186.3K
demos/21-Aug-2018
external_revisions/21-Aug-2018
GOVERNANCE.md21-Aug-20183K
icd/21-Aug-2018
include/21-Aug-2018
layers/21-Aug-2018
libs/21-Aug-2018
LICENSE.txt21-Aug-201810.1K
loader/21-Aug-2018
MODULE_LICENSE_APACHE221-Aug-20180
NOTICE21-Aug-201810.1K
README.md21-Aug-20182.8K
scripts/21-Aug-2018
tests/21-Aug-2018
update_external_sources.bat21-Aug-201811K
update_external_sources.sh21-Aug-20183.2K
windowsRuntimeInstaller/21-Aug-2018

README.md

      1 # Vulkan Ecosystem Components
      2 
      3 This project provides the Khronos official Vulkan ICD desktop loader and the Vulkan validation layers for Windows, Linux, and Android.
      4 
      5 ## CI Build Status
      6 | Platform | Build Status |
      7 |:--------:|:------------:|
      8 | Linux/Android | [![Build Status](https://travis-ci.org/KhronosGroup/Vulkan-LoaderAndValidationLayers.svg?branch=master)](https://travis-ci.org/KhronosGroup/Vulkan-LoaderAndValidationLayers) |
      9 | Windows |[![Build status](https://ci.appveyor.com/api/projects/status/ri4584d6qramrjiv/branch/master?svg=true)](https://ci.appveyor.com/project/Khronoswebmaster/vulkan-loaderandvalidationlayers/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 Vulkan supports multiple GPUs and multiple global contexts (VkInstance). The ICD loader is necessary to
     20 support multiple GPUs and VkInstance-level Vulkan commands.  Additionally, the loader manages inserting
     21 Vulkan layer libraries such as validation layers between the application and the ICD.
     22 
     23 The following components are available in this repository:
     24 - [Vulkan header files](include/vulkan/)
     25 - [*ICD Loader*](loader/)
     26 - [*Validation Layers*](layers/)
     27 - [*Mock ICD*](icd/)
     28 - [*Demos*](demos/)
     29 - [*Tests*](tests/)
     30 
     31 ## Contact Information
     32 * [Tobine Ehlis](mailto:tobine (a] google.com)
     33 * [Mark Lobodzinski](mailto:mark (a] lunarg.com)
     34 
     35 ## Information for Developing or Contributing:
     36 
     37 Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file in this repository for more details.
     38 Please see the [GOVERNANCE.md](GOVERNANCE.md) file in this repository for repository management details.
     39 
     40 ## How to Build and Run
     41 
     42 [BUILD.md](BUILD.md)
     43 Includes directions for building all components as well as running validation tests and demo applications.
     44 
     45 Information on how to enable the various Validation layers is in
     46 [layers/README.md](layers/README.md).
     47 
     48 Architecture and interface information for the loader is in
     49 [loader/LoaderAndLayerInterface.md](loader/LoaderAndLayerInterface.md).
     50 
     51 ## License
     52 This work is released as open source under a Apache-style license from Khronos including a Khronos copyright.
     53 
     54 See COPYRIGHT.txt for a full list of licenses used in this repository.
     55 
     56 ## Acknowledgements
     57 While this project has been developed primarily by LunarG, Inc., there are many other
     58 companies and individuals making this possible: Valve Corporation, funding
     59 project development; Google providing significant contributions to the validation layers;
     60 Khronos providing oversight and hosting of the project.
     61