-
-
Notifications
You must be signed in to change notification settings - Fork 306
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
#954 Bevy render PoC #960
Merged
tychedelia
merged 38 commits into
nannou-org:bevy-refactor
from
tychedelia:954-port-wgpu-utils-and-render-pipeline-to-bevy
Feb 27, 2024
Merged
#954 Bevy render PoC #960
Changes from 33 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
cb03fc8
Bevy render PoC.
tychedelia 950f200
Fix Cargo.lock.
tychedelia 6806d12
Update lockfile.
tychedelia 9ec050f
Cleanup.
tychedelia e91ceff
Remove empty file.
tychedelia e5fa7cb
Get simple texture working.
tychedelia ffcd528
Fix view uniform offset.
tychedelia a37611e
Add RenderCommand abstraction and cleanup pipeline generation in prep…
tychedelia ec988b9
Cargo fmt.
tychedelia dec6eea
Unused imports.
tychedelia ec4c02c
Cargo update.
tychedelia 8f01f3c
Cleanup.
tychedelia be3899d
Reset lockfile.
tychedelia 49ce055
Reset lockfile.
tychedelia f1bf87a
Cargo update.
tychedelia 4aa6ec8
Specify hotglsl-0.2.0 sha for nix.
tychedelia 3fbeb85
Build fixes.
tychedelia dfbb8a8
Add prepare stub for extracted draw component.
tychedelia fa33bbd
More cleanup and stubs.
tychedelia 8ec9b90
Fix.
tychedelia eb52663
Start draw api.
tychedelia 5959c73
Fixes and continue draw api.
tychedelia dc85277
Use msaa config for pipeline key.
tychedelia fc40d0c
Get depth stencil working.
tychedelia 59f96c6
Use bevy's output color format configuration (i.e. hdr)
tychedelia 2e488f0
Cargo fmt.
tychedelia 00fd57b
Grab window size from camera.
tychedelia 9acee7e
Start texturing.
tychedelia 3be043f
Get initial texturing working.
tychedelia 3c0fcfe
Fix example.
tychedelia 6c5f92a
Cleanups.
tychedelia 04fe53e
Cargo fmt.
tychedelia ffefe9f
Cleanup.
tychedelia 23714ac
Bevy 0.13
tychedelia d7b573d
rustfmt.
tychedelia d05630b
Revert "Bevy 0.13"
tychedelia 3e5105d
Rustfmt.
tychedelia 064dbf0
Remove nixos result file.
tychedelia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ target/ | |
**/*.rs.bk | ||
.DS_Store | ||
.idea/ | ||
result/ | ||
Oops, something went wrong.
Oops, something went wrong.
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.
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.
@mitchmindtree I ignored this but it's also accidentally checked in. What's the best practice here for nix? Was surprised to see this not already checked in since you use nix, do you have this in your global
.gitignore
?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.
I think you've done the right thing here! I'm just in the habit of clearing
result
I think and forgot to add it 😅