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
Hi,
I just found the following code is invalid in ToneMappingEffect.js:
this.defines.set("toneMapping(texel)", "OptimizedCineonToneMapping(texel)");
It will emit shader compile error under there.js r168
Change it to the following will remove the error:
this.defines.set("toneMapping(texel)", "CineonToneMapping(texel)");
I am using postprocessing 6.36.1
The text was updated successfully, but these errors were encountered:
Oh, thanks for the report. That's a breaking change from three that went through unnoticed. I'll work on a fix.
three
Sorry, something went wrong.
49eb938
Fixed in postprocessing@6.36.2.
postprocessing@6.36.2
No branches or pull requests
Hi,
I just found the following code is invalid in ToneMappingEffect.js:
this.defines.set("toneMapping(texel)", "OptimizedCineonToneMapping(texel)");
It will emit shader compile error under there.js r168
Change it to the following will remove the error:
this.defines.set("toneMapping(texel)", "CineonToneMapping(texel)");
I am using postprocessing 6.36.1
The text was updated successfully, but these errors were encountered: