Fixed shader links

This commit is contained in:
Sascha Willems 2023-10-14 16:47:29 +02:00
parent 60321d465a
commit 94198a7548

View file

@ -86,7 +86,7 @@ Note that some examples require specific device features, and if you are on a mu
## Shaders
Vulkan consumes shaders in an intermediate representation called SPIR-V. This makes it possible to use different shader languages by compiling them to that bytecode format. The primary shader language used here is [GLSL](data/shaders/glsl) but most samples also come with [HLSL](data/shaders/hlsl) shader sources.
Vulkan consumes shaders in an intermediate representation called SPIR-V. This makes it possible to use different shader languages by compiling them to that bytecode format. The primary shader language used here is [GLSL](shaders/glsl) but most samples also come with [HLSL](shaders/hlsl) shader sources.
## A note on synchronization