• Home
Name Date Size #Lines LOC

..--

build-android/03-May-2024-1,6641,204

cmake/03-May-2024-481408

docs/03-May-2024-914665

external/03-May-2024-4641

layers/03-May-2024-49,06141,244

scripts/03-May-2024-11,3488,863

tests/03-May-2024-58,88749,170

.appveyor.ymlD03-May-20241.9 KiB6542

.clang-formatD03-May-2024149 87

.cmake-format.pyD03-May-2024956 3510

.gitattributesD03-May-2024421 1711

.gitignoreD03-May-2024384 3332

.travis.ymlD03-May-20246.3 KiB173139

Android.mkD03-May-202492 30

BUILD.mdD03-May-202430.4 KiB829573

CMakeLists.txtD03-May-202417.6 KiB384329

CODE_OF_CONDUCT.mdD03-May-2024280 21

CONTRIBUTING.mdD03-May-202411.8 KiB176140

GOVERNANCE.mdD03-May-20243 KiB5448

LICENSE.txtD03-May-202411.4 KiB208173

MODULE_LICENSE_APACHE2D03-May-20240

NOTICED03-May-202410.1 KiB171139

OWNERSD03-May-2024226 87

README.mdD03-May-20242.7 KiB5838

README.md

1# Vulkan Ecosystem Components
2
3This 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
14Vulkan is an Explicit API, enabling direct control over how GPUs actually work. By design, minimal error checking is done inside
15a Vulkan driver. Applications have full control and responsibility for correct operation. Any errors in
16how Vulkan is used can result in a crash. This project provides Vulkan validation layers that can be enabled
17to assist development by enabling developers to verify their applications correct use of the Vulkan API.
18
19The following components are available in this repository:
20- [*Validation Layers*](layers/)
21- [*Tests*](tests/)
22
23## Contact Information
24* [Tobin Ehlis](mailto:tobine@google.com)
25* [Mark Lobodzinski](mailto:mark@lunarg.com)
26
27## Information for Developing or Contributing:
28
29Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file in this repository for more details.
30Please 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)
35Includes directions for building all components as well as running validation tests.
36
37Information on how to enable the various Validation layers is in
38[layers/README.md](layers/README.md).
39
40## Version Tagging Scheme
41
42Updates 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
46This scheme was adopted following the 1.1.96 Vulkan specification release.
47
48## License
49This work is released as open source under a Apache-style license from Khronos including a Khronos copyright.
50
51See COPYRIGHT.txt for a full list of licenses used in this repository.
52
53## Acknowledgements
54While this project has been developed primarily by LunarG, Inc., there are many other
55companies and individuals making this possible: Valve Corporation, funding
56project development; Google providing significant contributions to the validation layers;
57Khronos providing oversight and hosting of the project.
58