Feature Request: sRGBPass for EffectComposer
See original GitHub issueI’m in need of a post process pass that does the same thing as renderer.outputEncoding = THREE.sRGBEncoding.
To be used like so:
composer.addPass(renderPass);
composer.addPass(outlinePass);
composer.addPass(new THREE.sRGBPass())
See https://discourse.threejs.org/t/srgb-encoding-as-a-postprocess-pass/12278/4
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:7
Top Results From Across the Web
EffectComposer – three.js docs
Used to implement post-processing effects in three.js. The class manages a chain of post-processing passes to produce the final visual result. Post-processing ...
Read more >EffectComposer | postprocessing
A post processing library that provides the means to implement image filter effects for three.js.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks, #18477 looks good for now I agree.
Maybe something like
EncodingPass
orColorSpacePass
which can be configured similar toWebGLRenderer.outputEncoding
. Default would besRGB
.