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

SSAOPass: Remove one copy pass. #28744

Merged
merged 1 commit into from
Jun 25, 2024
Merged

SSAOPass: Remove one copy pass. #28744

merged 1 commit into from
Jun 25, 2024

Conversation

Mugen87
Copy link
Collaborator

@Mugen87 Mugen87 commented Jun 25, 2024

Related issue: -

Description

Similar to SAOPass the AO is now blended on top of the existing read buffer which makes one copy pass redundant and thus improves performance.

The alternative would be to implement a composite/blend shader that blends readBuffer.texture with the AO into the write buffer. However, always reading from readBuffer and writing into writeBuffer has performance issues since copies are required like in the original version of SSAOPass. For certain FX passes, it makes sense if they blend/write their result on top of the "source" data without unnecessary copy or swap operations.

@Mugen87 Mugen87 added this to the r166 milestone Jun 25, 2024
@Mugen87 Mugen87 merged commit 4d479c2 into mrdoob:dev Jun 25, 2024
11 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant