-
Notifications
You must be signed in to change notification settings - Fork 406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft: Fix VUID-VkSwapchainCreateInfoKHR-presentMode-02839 #8321
Open
r-potter
wants to merge
1
commit into
KhronosGroup:main
Choose a base branch
from
r-potter:rpotter-remove-erroneous-present-mode-check
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Draft: Fix VUID-VkSwapchainCreateInfoKHR-presentMode-02839 #8321
r-potter
wants to merge
1
commit into
KhronosGroup:main
from
r-potter:rpotter-remove-erroneous-present-mode-check
Conversation
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
Including a VkSurfacePresentModeEXT in the call to GetSurfaceCapabilities makes this check more strict than it should be.
CI Vulkan-ValidationLayers build queued with queue ID 223790. |
CI Vulkan-ValidationLayers build # 17118 running. |
CI Vulkan-ValidationLayers build # 17118 passed. |
artem-lunarg
added a commit
to artem-lunarg/Vulkan-ValidationLayers
that referenced
this pull request
Nov 1, 2024
Why better: - Simpler then the previous fix (no need to sync between two groups) - Potential fixes most blacklisted Android WSI tests. - Potentially solves a problem raised by Ralph or at least handles additional cases that are not handled correctly now (failures of our Android WSI is likely one of the manifestation of the problem): KhronosGroup#8321
artem-lunarg
added a commit
to artem-lunarg/Vulkan-ValidationLayers
that referenced
this pull request
Nov 1, 2024
Why better: - Simpler then the previous fix (no need to sync between two groups) - Fixes some blacklisted Android WSI tests. - Potentially solves a problem raised by Ralph or at least handles additional cases that are not handled correctly now (failures of our Android WSI is likely one of the manifestation of the problem): KhronosGroup#8321
artem-lunarg
added a commit
that referenced
this pull request
Nov 1, 2024
Why better: - Simpler then the previous fix (no need to sync between two groups) - Fixes some blacklisted Android WSI tests. - Potentially solves a problem raised by Ralph or at least handles additional cases that are not handled correctly now (failures of our Android WSI is likely one of the manifestation of the problem): #8321
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Including a VkSurfacePresentModeEXT in the call to GetSurfaceCapabilities makes this check more strict than it should be.
This will require WG discussion. Internal Khronos spec issue to follow
This PR: #6351 was introduced to handle a case where chaining a VkSurfacePresentModeEXT lowered the minImageCount. However, we have also observed cases were it instead increases it, which causes validation errors in the opposite direction.
This PR makes validation layers actually check what VUID-VkSwapchainCreateInfoKHR-presentMode-02839 says the rule is (i.e. the value returned by the unextended function). Unfortunately this will go back to throwing errors in the case that triggered #6351. The spec has this note describing this functionality, but no VUs corresponding to it, and so its unclear both how to validate this, and how to correctly use the functionality: