From a106e1cf85cbc934dc7628cd3328a8195404ce8b Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 21 Jan 2025 00:04:32 +0100 Subject: Add Vulkan 1.3 headers --- vendor/vulkan/BUILD.bazel | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vendor/vulkan/BUILD.bazel (limited to 'vendor/vulkan/BUILD.bazel') diff --git a/vendor/vulkan/BUILD.bazel b/vendor/vulkan/BUILD.bazel new file mode 100644 index 0000000..71ef954 --- /dev/null +++ b/vendor/vulkan/BUILD.bazel @@ -0,0 +1,12 @@ +cc_library( + name = "vulkan", + hdrs = [ + "vk_platform.h", + "vulkan.h", + "vulkan_core.h", + ], + includes = [ + ".", + ], + visibility = ["//:__subpackages__"], +) -- cgit