Add test that context creation reclaims vram to prevent creation fail…#2984
Open
kdashg wants to merge 1 commit intoKhronosGroup:mainfrom
Open
Add test that context creation reclaims vram to prevent creation fail…#2984kdashg wants to merge 1 commit intoKhronosGroup:mainfrom
kdashg wants to merge 1 commit intoKhronosGroup:mainfrom
Conversation
kenrussell
reviewed
Dec 19, 2019
| assertMsg(width >= minSize, | ||
| ` drawingBufferWidth (${width}) should be >= ${minSize}`); | ||
| assertMsg(height >= minSize, | ||
| ` drawingBufferHeight (${height}) should be >= ${minSize}`); |
Member
There was a problem hiding this comment.
Chromium's WebGL implementation handles the scenario of users allocating many WebGL contexts with large back buffers by scaling down the size of newly created back buffers, rather than losing older contexts. We've tried in the past to lift the global limits on the amount of back buffer VRAM that can be allocated, but have never succeeded; crashes have been seen inside OpenGL drivers on various platforms, instead of GL_OUT_OF_MEMORY being reported. I'm not sure that requiring that newly-allocated contexts have the same back buffer size as the originally-allocated context is an invariant we should enforce; let's discuss in real time on tomorrow's working group conference call.
This file contains hidden or 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
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.
…ure.
This would be a nice invariant to have, but we can talk about how much we want to guarantee here.