Tone mapping: Difference between revisions

From vegard.wiki
Jump to navigation Jump to search
Content added Content deleted
(add my formula + reference)
(add ref)
 
Line 11: Line 11:
* http://filmicworlds.com/blog/filmic-tonemapping-operators/
* http://filmicworlds.com/blog/filmic-tonemapping-operators/
* https://64.github.io/tonemapping/
* https://64.github.io/tonemapping/
* https://mynameismjp.wordpress.com/2010/04/30/a-closer-look-at-tone-mapping/


[[Category:Graphics programming]]
[[Category:Graphics programming]]

Latest revision as of 21:55, 20 December 2022

This article is currently a stub; it means I'm aware it's short and I probably intend to expand on the subject in the future!

My own formula (https://www.shadertoy.com/view/Dlf3RM):

mix(v, vec3(1.), smoothstep(1., 4., dot(v, vec3(1.))));

See also