• Home
Name Date Size #Lines LOC

..--

build-android/03-May-2024-1,043779

cmake/03-May-2024-665535

common/03-May-2024-770627

demos/03-May-2024-35,82132,420

include/vulkan/03-May-2024-25,56121,795

layers/03-May-2024-42,95935,889

libs/03-May-2024-58,98639,460

loader/03-May-2024-16,50812,857

tests/03-May-2024-172,432124,568

windowsRuntimeInstaller/03-May-2024-1,7831,369

.clang-formatD03-May-2024116 65

.gitignoreD03-May-2024460 3736

Android.bpD03-May-202451 54

Android.mkD03-May-202492 30

BUILD.mdD03-May-202414.9 KiB315249

CMakeLists.txtD03-May-202413 KiB310262

CONTRIBUTING.mdD03-May-20245.8 KiB10883

COPYRIGHT.txtD03-May-20246.4 KiB132108

LICENSE.txtD03-May-202410.1 KiB171139

README.mdD03-May-20242.7 KiB5941

build_windows_targets.batD03-May-20243.5 KiB123114

determine_vs_version.pyD03-May-20243.7 KiB11659

generator.pyD03-May-202420.7 KiB499255

glslang_revisionD03-May-202441 21

lvl_genvk.pyD03-May-202410.3 KiB276192

parameter_validation_generator.pyD03-May-202453.9 KiB988669

reg.pyD03-May-202439.8 KiB814455

source_line_info.pyD03-May-20241.5 KiB4012

spirv-headers_revisionD03-May-202441 21

spirv-tools_revisionD03-May-202441 21

threading_generator.pyD03-May-202422 KiB468305

unique_objects_generator.pyD03-May-202438.9 KiB761553

update_external_sources.batD03-May-202411.7 KiB401327

update_external_sources.shD03-May-20243.7 KiB134111

vk-generate.pyD03-May-202411.9 KiB309239

vk-layer-introspect.pyD03-May-202413.2 KiB400286

vk.xmlD03-May-2024390.5 KiB4,8284,749

vk_helper.pyD03-May-2024130.4 KiB2,2451,840

vk_layer_documentation_generate.pyD03-May-202421.2 KiB407269

vulkan.pyD03-May-202458.6 KiB1,4601,228

README.md

1# Vulkan Ecosystem Components
2
3This project provides Khronos official ICD loader and validation layers for Vulkan developers on Windows and Linux.
4
5## Introduction
6
7Vulkan is an Explicit API, enabling direct control over how GPUs actually work. No (or very little) validation
8or error checking is done inside a Vulkan driver. Applications have full control and responsibility. Any errors in
9how Vulkan is used often result in a crash. This project provides standard validation layers that can be enabled
10to ease development by helping developers verify their applications correctly use the Vulkan API.
11
12Vulkan supports multiple GPUs and multiple global contexts (VkInstance). The ICD loader is necessary to
13support multiple GPUs  and the VkInstance level Vulkan commands.  Additionally, the loader manages inserting
14Vulkan layer libraries, including validation layers between the application and the ICD.
15
16The 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
24If you intend to contribute, the preferred work flow is for you to develop your contribution
25in a fork of this repo in your GitHub account and then submit a pull request.
26Please 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)
31includes directions for building all the components, running the validation tests and running the demo applications.
32
33Information on how to enable the various Validation layers is in
34[layers/README.md](layers/README.md).
35
36Architecture 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
48This work is released as open source under a Apache-style license from Khronos including a Khronos copyright.
49
50See COPYRIGHT.txt for a full list of licenses used in this repository.
51
52## Acknowledgements
53While this project has been developed primarily by LunarG, Inc; there are many other
54companies and individuals making this possible: Valve Corporation, funding
55project development; Google providing significant contributions to the validation layers;
56Khronos providing oversight and hosting of the project.
57
58
59