diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-21 00:04:32 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-01-21 00:04:32 +0100 |
commit | a106e1cf85cbc934dc7628cd3328a8195404ce8b (patch) | |
tree | 51f6c6bc5053c77e23ad09d9552e40c51ca1fb38 /vendor/vulkan/BUILD.bazel | |
parent | b438dd7bf4082e2b6a23e3995d5c249b33102abc (diff) |
Add Vulkan 1.3 headers
Diffstat (limited to 'vendor/vulkan/BUILD.bazel')
-rw-r--r-- | vendor/vulkan/BUILD.bazel | 12 |
1 files changed, 12 insertions, 0 deletions
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__"],
+)
|