-
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: - Previously NRI assumed only top-left (D3D style) viewport origin. Now this behavior has been extended to support bottom-left origin too (top-left is still the default). For this purpose "DeviceDesc::isViewportOriginBottomLeftSupported" has been introduced and added "Viewport::originBottomLeft" as the last field in the struct, unlocking maximum flexibility. BREAKING CHANGES: - "depthRangeMin" and "depthRangeMax" renamed to "depthMin" and "depthMax" to look closer to the D3D/VK names DETAILS: - NRI: added viewport origin bottom-left support (unsupported by D3D11) - WrapperVK: added ability to enable NRI validation - VK: fixed viewport Y flipping code - VK: updated headers to v1.3.296 - polishing - updated docs
- Loading branch information
Showing
20 changed files
with
122 additions
and
69 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
21 files
+1 −1 | CMakeLists.txt | |
+164 −9 | include/vulkan/vulkan.cppm | |
+592 −304 | include/vulkan/vulkan.hpp | |
+606 −14 | include/vulkan/vulkan_core.h | |
+165 −22 | include/vulkan/vulkan_enums.hpp | |
+73 −26 | include/vulkan/vulkan_extension_inspection.hpp | |
+1,047 −168 | include/vulkan/vulkan_funcs.hpp | |
+1,453 −171 | include/vulkan/vulkan_handles.hpp | |
+615 −19 | include/vulkan/vulkan_hash.hpp | |
+22 −1 | include/vulkan/vulkan_hpp_macros.hpp | |
+1,041 −308 | include/vulkan/vulkan_raii.hpp | |
+73 −3 | include/vulkan/vulkan_shared.hpp | |
+322 −10 | include/vulkan/vulkan_static_assertions.hpp | |
+25,983 −21,232 | include/vulkan/vulkan_structs.hpp | |
+193 −4 | include/vulkan/vulkan_to_string.hpp | |
+10 −5 | registry/cgenerator.py | |
+41 −6 | registry/generator.py | |
+4,951 −1,138 | registry/validusage.json | |
+1 −1 | registry/video.xml | |
+1,046 −171 | registry/vk.xml | |
+2 −2 | registry/vkconventions.py |
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
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.