We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Seems some definitions are not being tested and additional tests should be added as needed to test shader generation
The text was updated successfully, but these errors were encountered:
Fix implementation of screen node (#1111)
1b79589
The parentheses were incorrectly placed in the implementation of the screen compositing node. Changes from this: (mix * ((1 - (1 - fg)) * (1 - bg))) + ((1 - mix) * bg) to this: (mix * ((1 - (1 - fg) * (1 - bg)))) + ((1 - mix) * bg)
No branches or pull requests
Seems some definitions are not being tested and additional tests should be added as needed to test shader generation
The text was updated successfully, but these errors were encountered: