From 94198a7548d0c5b899840c31c67190df919a61a0 Mon Sep 17 00:00:00 2001 From: Sascha Willems Date: Sat, 14 Oct 2023 16:47:29 +0200 Subject: [PATCH] Fixed shader links --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 94fb039a..ac8e5550 100644 --- a/README.md +++ b/README.md @@ -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