From b17d15563b69e8d5dab507a5a527ed618f015fb5 Mon Sep 17 00:00:00 2001 From: Hiroki Noda Date: Wed, 10 Dec 2025 01:28:05 +0900 Subject: [PATCH] Add Vulkan-Headers as a submodule --- .gitmodules | 3 +++ Vulkan-Headers | 1 + erupt_dlang.py | 4 ++-- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .gitmodules create mode 160000 Vulkan-Headers diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..98bf7a6 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "Vulkan-Headers"] + path = Vulkan-Headers + url = https://github.com/KhronosGroup/Vulkan-Headers diff --git a/Vulkan-Headers b/Vulkan-Headers new file mode 160000 index 0000000..8a39755 --- /dev/null +++ b/Vulkan-Headers @@ -0,0 +1 @@ +Subproject commit 8a397558c4d2a4bf9e64e900c45a7e65664c32b2 diff --git a/erupt_dlang.py b/erupt_dlang.py index 698ca13..dee41ca 100644 --- a/erupt_dlang.py +++ b/erupt_dlang.py @@ -2,7 +2,7 @@ """ D Vulkan bindings generator, based off of and using the Vulkan-Docs code. -to generate bindings run: vkdgen.py path/to/vulcan-docs outputDir +to generate bindings run: erupt_dlang.py Vulkan-Headers outputDir """ import sys @@ -1254,4 +1254,4 @@ def __init__( self, *args, **kwargs ): reg.apiGen() if print_debug: - tests_file.close() \ No newline at end of file + tests_file.close()