-
Notifications
You must be signed in to change notification settings - Fork 926
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
Hardware Abstraction Layer #1471
Merged
Merged
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
kvark
force-pushed
the
hal
branch
2 times, most recently
from
June 6, 2021 06:25
4748be5
to
4e50c76
Compare
Gordon-F
reviewed
Jun 8, 2021
kvark
force-pushed
the
hal
branch
6 times, most recently
from
June 17, 2021 05:30
4b731bb
to
0ea5362
Compare
msiglreith
reviewed
Jun 17, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉
fasten your seat belts! |
Merged
bors bot
added a commit
that referenced
this pull request
Jun 30, 2021
1510: OpenGL ES3 backend r=cwfitzgerald,Gordon-F,kvark a=kvark **Connections** Follow-up to #1471 **Description** The new wgpu-hal backend for GLES3 ~~and WebGL2~~ Edit: WebGL2 is not included here **Testing** Examples! Current status: - all examples work, minus the next issue - "mipmap" is buggy because we don't have a good way to do mipmap/layer selection - automated testing? Co-authored-by: Dzmitry Malyshau <kvarkus@gmail.com> Co-authored-by: Dzmitry Malyshau <dmalyshau@mozilla.com> Co-authored-by: Dzmitry Malyshau <kvark@fastmail.com>
bors bot
added a commit
that referenced
this pull request
Jun 30, 2021
1576: Switch all bitflag names to plural r=cwfitzgerald a=kvark **Connections** #1471 added a lot of singular bitflag names. Previously, we weren't really consistent. **Description** This PR changes all of the names to be plural, except for a few that don't imply singularity, and are matching WebGPU upstream. Maybe we need to convert them too? **Testing** self-tested Co-authored-by: Dzmitry Malyshau <kvarkus@gmail.com>
bors bot
added a commit
that referenced
this pull request
Jul 13, 2021
1602: New DX12 backend (unfinished) r=kvark a=kvark **Connections** Continuation of #1471 **Description** Mostly fresh implementation on DX12 backend for wgpu-hal Core changes: - texture usage is filtered before passing to `create_texture_view`, so that wgpu-hal can assume every bit is important. - all the copies involving textures are limited to one array layer at a time - remove render pass boundary usages **Testing** Examples (not running yet) Co-authored-by: Dzmitry Malyshau <dmalyshau@mozilla.com> Co-authored-by: Dzmitry Malyshau <kvarkus@gmail.com>
Patryk27
pushed a commit
to Patryk27/wgpu
that referenced
this pull request
Nov 23, 2022
Operations like `OpUGreaterThan` accept arguments as long as they are integers (signedness doesn't matter) but they must be interpreted as `Uint`s.
4 tasks
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.
Connections
Closes #1423
Description
Prototyping the new hardware abstraction layer for wgpu, which replaces gfx-rs dependencies.
The central piece is "wgpu-hal/src/lib.rs".
Metrics
TODO:
Testing
examples