Storage indexing, framebuffer tracking, and a bunch of validation fixes#77
Merged
bors[bot] merged 9 commits intogfx-rs:masterfrom Feb 27, 2019
Merged
Storage indexing, framebuffer tracking, and a bunch of validation fixes#77bors[bot] merged 9 commits intogfx-rs:masterfrom
bors[bot] merged 9 commits intogfx-rs:masterfrom
Conversation
This was referenced Feb 26, 2019
Member
Author
|
Note: there is a long tail of seemingly unrelated changes here. Mostly incremental improvements. |
grovesNL
reviewed
Feb 27, 2019
wgpu-native/src/command/render.rs
Outdated
| let pipeline_layout_guard = HUB.pipeline_layouts.read(); | ||
| let pipeline_layout = pipeline_layout_guard.get(pipeline.layout_id); | ||
| let pipeline_layout = &pipeline_layout_guard[pipeline.layout_id]; | ||
| let bing_group_guard = HUB.bind_groups.read(); |
Collaborator
There was a problem hiding this comment.
nit: just noticed the typo bing here :)
| @@ -550,7 +550,9 @@ pub extern "C" fn wgpu_device_create_texture( | |||
|
|
|||
| pub fn texture_create_view( | |||
Collaborator
There was a problem hiding this comment.
It doesn't seem correct long term to accept hal types in pub functions, unless we can somehow guarantee wgpu-remote will be the only consumer
Member
Author
There was a problem hiding this comment.
Is this going to be a problem if those entry points are not in the headers?
Member
Author
|
Ok, all Vulkan validation errors are fixed now. |
Contributor
Build succeeded |
mitchmindtree
pushed a commit
to mitchmindtree/wgpu
that referenced
this pull request
Feb 23, 2020
kvark
pushed a commit
to kvark/wgpu
that referenced
this pull request
Jun 3, 2021
77: Modify examples to use PowerPreference::Default r=kvark a=danaugrs Co-authored-by: Daniel Salvadori <danaugrs@gmail.com>
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.
Closes #73
Closes #75
Closes #79