From 7215777288ebb0a610730d6e2be2b5d0b29242cd Mon Sep 17 00:00:00 2001 From: Maik Klein Date: Sun, 16 Apr 2017 13:05:45 +0200 Subject: [PATCH] Update links in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e25fde..9d890ed 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ fn do_something_with_a_device(device: &Device){} ``` ### Extension loading -Additionally, every Vulkan extension has to be loaded explicitly. You can find all extensions under [ash::extensions](https://github.com/MaikKlein/ash/tree/master/src/extensions). You still have to tell Vulkan which instance or device extensions you want to load. +Additionally, every Vulkan extension has to be loaded explicitly. You can find all extensions under [ash::extensions](https://github.com/MaikKlein/ash/tree/master/ash/src/extensions). You still have to tell Vulkan which instance or device extensions you want to load. ```Rust use ash::extensions::Swapchain; let swapchain_loader = Swapchain::new(&instance, &device).expect("Unable to load swapchain");