stk-code_catmod/data/shaders/object_pass1.frag

8 lines
130 B
GLSL
Raw Normal View History

#version 130
noperspective in vec3 nor;
void main(void)
{
gl_FragColor = vec4(0.5 * normalize(nor) + 0.5, gl_FragCoord.z);
}