From 9aab9f448077fa87d401496e2d59cd1f9f54f211 Mon Sep 17 00:00:00 2001 From: Jens Goldberg Date: Thu, 11 Nov 2021 19:34:34 +0000 Subject: [PATCH] Updated Vulkan XML registry master branch name The Vulkan XML registry changed their name from "master" to "main". This bit me when I followed the link in the README, didn't read too carefully that it was X commits behind, and downloaded a pretty old and incompatible version of `vk.xml` by mistake. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1dab837..34c08a1 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ vulkan-zig aims to be always compatible with the ever-changing Zig master branch ## Features ### CLI-interface -A CLI-interface is provided to generate vk.zig from the [Vulkan XML registry](https://github.com/KhronosGroup/Vulkan-Docs/blob/master/xml), which is built by default when invoking `zig build` in the project root. To generate vk.zig, simply invoke the program as follows: +A CLI-interface is provided to generate vk.zig from the [Vulkan XML registry](https://github.com/KhronosGroup/Vulkan-Docs/blob/main/xml), which is built by default when invoking `zig build` in the project root. To generate vk.zig, simply invoke the program as follows: ``` $ zig-cache/bin/vulkan-zig-generator path/to/vk.xml output/path/to/vk.zig ```