-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HIGHLIGHTS: - Helper: exposed "ResourceGroupDesc::preferredMemorySize" to define desired memory chunk size (256 Mb if 0) - bug fixes and improvements DETAILS: - Helper: added ability to provide preferred memory chunk size - bug fixes and improvements - updated Vulkan headers to v1.3.290 - updated comments
- Loading branch information
Showing
19 changed files
with
166 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule vulkan
updated
27 files
+46 −6 | .github/workflows/ci.yml | |
+37 −9 | CMakeLists.txt | |
+108 −0 | Makefile.release | |
+46 −1 | include/vulkan/vulkan.cppm | |
+265 −123 | include/vulkan/vulkan.hpp | |
+147 −9 | include/vulkan/vulkan_core.h | |
+167 −71 | include/vulkan/vulkan_enums.hpp | |
+31 −11 | include/vulkan/vulkan_extension_inspection.hpp | |
+44 −11 | include/vulkan/vulkan_funcs.hpp | |
+287 −56 | include/vulkan/vulkan_handles.hpp | |
+245 −63 | include/vulkan/vulkan_hash.hpp | |
+20 −14 | include/vulkan/vulkan_raii.hpp | |
+161 −0 | include/vulkan/vulkan_static_assertions.hpp | |
+6,229 −5,404 | include/vulkan/vulkan_structs.hpp | |
+34 −5 | include/vulkan/vulkan_to_string.hpp | |
+1 −1 | registry/apiconventions.py | |
+4 −4 | registry/cgenerator.py | |
+5 −5 | registry/generator.py | |
+1 −1 | registry/parse_dependency.py | |
+45 −4 | registry/reg.py | |
+8 −3 | registry/spec_tools/conventions.py | |
+1 −0 | registry/spec_tools/util.py | |
+2 −2 | registry/stripAPI.py | |
+2,413 −5,825 | registry/validusage.json | |
+376 −102 | registry/vk.xml | |
+1 −1 | registry/vkconventions.py | |
+1 −1 | tests/CMakeLists.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.