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

Improve TAA #8974

Closed
wants to merge 32 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
cf10ba1
Improve TAA
JMS55 Jun 27, 2023
935e976
Merge commit '0566e73af460b9d128354a20970b1e1e0cc3b719' into taa-impr…
JMS55 Jul 27, 2023
5118466
Merge commit 'ac8f36743e7cb7e6a85e563e3ff52e57ec1676a5' into taa-impr…
JMS55 Aug 12, 2023
d4fdbfd
Merge commit '505b9a58bd8768c7d31446ee9bb23639cd127cc5' into taa-impr…
JMS55 Aug 15, 2023
4f5faaa
Reword doc comment
JMS55 Aug 15, 2023
97e7c98
Fix bug?
JMS55 Aug 15, 2023
4349adb
Fix TemporalJitter
JMS55 Aug 15, 2023
f655399
Misc
JMS55 Aug 15, 2023
423c57b
Try some more changes
JMS55 Aug 15, 2023
0975f1c
Expose TAANode
JMS55 Aug 16, 2023
9e2a416
Expose TAA node name
JMS55 Aug 16, 2023
9d43f6a
Document shader more
JMS55 Aug 20, 2023
bf65a9b
Merge branch 'taa-improvements' of https://github.com/JMS55/bevy into…
JMS55 Aug 20, 2023
bc499de
Merge commit 'a024a1f3b99ff9040fe3af5c7c1d8ef9a5434925' into taa-impr…
JMS55 Aug 20, 2023
c282f7d
Misc
JMS55 Aug 20, 2023
f063d6c
Precalculate Mitchell-Netravali
JMS55 Aug 25, 2023
cd4f9d3
Keep history in YCoCg
JMS55 Aug 25, 2023
bd98a45
Misc doc
JMS55 Aug 25, 2023
8819e13
Merge commit '02025eff0b25bb8c18103dbafc33a764e1989ad4' into taa-impr…
JMS55 Sep 1, 2023
572a04d
Merge commit '8ace2ff9e361dd7ef1bc620b84674def0cb56454' into taa-impr…
JMS55 Sep 24, 2023
91bdc9c
Fix filter weights
JMS55 Sep 24, 2023
8910c86
Adjust doc comments
JMS55 Sep 24, 2023
ce7f9c4
Remove weight sum
JMS55 Sep 28, 2023
e463378
Merge commit 'be8ff5d0e1601ad503daad2f3ace59eaa98e7dd0' into taa-impr…
JMS55 Oct 12, 2023
2fbac6d
Use try insert
JMS55 Oct 12, 2023
df434bc
Use uniform for reset
JMS55 Oct 12, 2023
d10b774
Adopt improved AA example
JMS55 Oct 12, 2023
b1fc908
Appease clippy
JMS55 Oct 12, 2023
8944b09
Reorder import
JMS55 Oct 12, 2023
1f608d2
Fix camera cutoff
JMS55 Oct 15, 2023
cd1ac11
Add taa node doc comment
JMS55 Oct 17, 2023
9feb908
Update crates/bevy_core_pipeline/src/taa/mod.rs
JMS55 Oct 20, 2023
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
5 changes: 4 additions & 1 deletion crates/bevy_core_pipeline/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ pub use skybox::Skybox;
/// Experimental features that are not yet finished. Please report any issues you encounter!
pub mod experimental {
pub mod taa {
pub use crate::taa::*;
pub use crate::taa::{
TemporalAntiAliasBundle, TemporalAntiAliasNode, TemporalAntiAliasPlugin,
TemporalAntiAliasSettings,
};
}
}

Expand Down
Loading
Loading