Skip to content
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
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
cb03fc8
Bevy render PoC.
tychedelia Jan 18, 2024
950f200
Fix Cargo.lock.
tychedelia Jan 26, 2024
6806d12
Update lockfile.
tychedelia Jan 26, 2024
9ec050f
Cleanup.
tychedelia Jan 26, 2024
e91ceff
Remove empty file.
tychedelia Jan 26, 2024
e5fa7cb
Get simple texture working.
tychedelia Jan 31, 2024
ffcd528
Fix view uniform offset.
tychedelia Jan 31, 2024
a37611e
Add RenderCommand abstraction and cleanup pipeline generation in prep…
tychedelia Jan 31, 2024
ec988b9
Cargo fmt.
tychedelia Jan 31, 2024
dec6eea
Unused imports.
tychedelia Jan 31, 2024
ec4c02c
Cargo update.
tychedelia Jan 31, 2024
8f01f3c
Cleanup.
tychedelia Jan 31, 2024
be3899d
Reset lockfile.
tychedelia Jan 31, 2024
49ce055
Reset lockfile.
tychedelia Jan 31, 2024
f1bf87a
Cargo update.
tychedelia Jan 31, 2024
4aa6ec8
Specify hotglsl-0.2.0 sha for nix.
tychedelia Jan 31, 2024
3fbeb85
Build fixes.
tychedelia Jan 31, 2024
dfbb8a8
Add prepare stub for extracted draw component.
tychedelia Feb 1, 2024
fa33bbd
More cleanup and stubs.
tychedelia Feb 1, 2024
8ec9b90
Fix.
tychedelia Feb 1, 2024
eb52663
Start draw api.
tychedelia Feb 2, 2024
5959c73
Fixes and continue draw api.
tychedelia Feb 2, 2024
dc85277
Use msaa config for pipeline key.
tychedelia Feb 2, 2024
fc40d0c
Get depth stencil working.
tychedelia Feb 2, 2024
59f96c6
Use bevy's output color format configuration (i.e. hdr)
tychedelia Feb 2, 2024
2e488f0
Cargo fmt.
tychedelia Feb 3, 2024
00fd57b
Grab window size from camera.
tychedelia Feb 3, 2024
9acee7e
Start texturing.
tychedelia Feb 3, 2024
3be043f
Get initial texturing working.
tychedelia Feb 3, 2024
3c0fcfe
Fix example.
tychedelia Feb 3, 2024
6c5f92a
Cleanups.
tychedelia Feb 3, 2024
04fe53e
Cargo fmt.
tychedelia Feb 3, 2024
ffefe9f
Cleanup.
tychedelia Feb 4, 2024
23714ac
Bevy 0.13
tychedelia Feb 19, 2024
d7b573d
rustfmt.
tychedelia Feb 19, 2024
d05630b
Revert "Bevy 0.13"
tychedelia Feb 27, 2024
3e5105d
Rustfmt.
tychedelia Feb 27, 2024
064dbf0
Remove nixos result file.
tychedelia Feb 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ target/
**/*.rs.bk
.DS_Store
.idea/
result/
Copy link
Collaborator Author

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?

Copy link
Member

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 😅

Loading
Loading