Update vulkan-memory-allocator-hpp to v3.3.0#9062
Update vulkan-memory-allocator-hpp to v3.3.0#9062Stehsaer wants to merge 2 commits intoxmake-io:devfrom
Conversation
Summary of ChangesHello @Stehsaer, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request updates the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates the vulkan-memory-allocator-hpp package to a new version. However, the specified version v3.3.0 is incorrect as the corresponding tag does not exist in the upstream repository. The correct version tag is v3.3.0+2. I have provided a review comment with a code suggestion to correct both the version string and its corresponding SHA256 hash. This is a critical fix to prevent build failures.
|
Well should be fine as it seems not affected by rule -- when adding a new sdk version, please ensure vulkan-headers, vulkan-hpp, vulkan-loader, vulkan-tools, vulkan-validationlayers, vulkan-utility-libraries, spirv-headers, spirv-reflect, spirv-tools, glslang and volk packages are updated simultaneously. |
|
yes it's fine as it's not tied to a specific Vulkan SDK version |
|
We need to update all Vulkan-SDK related libraries to |
|
Looks like it, I can do it but I don't have the time to do it now |
|
Well, too bad we do not have some scripts/update-vulkan.lua :D |
|
It looks like 32bits platforms are not supported |
|
The error is caused by disabled Chain of cause
On 32-bit platforms, vulkan-hpp intentionally set #if ( VULKAN_HPP_TYPESAFE_CONVERSION == 1 )
# define VULKAN_HPP_TYPESAFE_EXPLICIT
#else
# define VULKAN_HPP_TYPESAFE_EXPLICIT explicit
#endifLooking at the conversion function at https://github.com/YaaZ/VulkanMemoryAllocator-Hpp/blob/d959558c033d7f5f3f5fb193df1693090c39f7ec/include/vk_mem_alloc_handles.hpp#L81: VULKAN_HPP_TYPESAFE_EXPLICIT operator VmaAllocator() const VULKAN_HPP_NOEXCEPT {
return m_allocator;
}It's clear that I think this is likely a bug of |
Yes indeed. |
|
Status update: The author of |
Update vulkan-memory-allocator-hpp to v3.3.0. See https://github.com/YaaZ/VulkanMemoryAllocator-Hpp/releases/tag/v3.3.0%2B2