julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame
243 Bytes
export default /* glsl */`
uniform sampler2D t2D;
varying vec2 vUv;
void main() {
vec4 texColor = texture2D( t2D, vUv );
gl_FragColor = mapTexelToLinear( texColor );
#include <tonemapping_fragment>
#include <encodings_fragment>
}
`;