stk-code_catmod/data/shaders/objectref_pass1.frag

23 lines
372 B
GLSL
Raw Normal View History

2014-01-18 19:32:08 -05:00
uniform sampler2D tex;
#if __VERSION__ >= 130
in vec3 nor;
2014-01-18 19:32:08 -05:00
in vec2 uv;
2014-04-06 16:19:10 -04:00
out vec3 EncodedNormal;
#else
varying vec3 nor;
varying vec2 uv;
#define EncodedNormal gl_FragColor.xy
#endif
vec2 EncodeNormal(vec3 n);
2014-01-18 19:32:08 -05:00
void main() {
vec4 col = texture(tex, uv);
2014-01-18 19:32:08 -05:00
if (col.a < 0.5)
discard;
2014-04-06 16:19:10 -04:00
EncodedNormal.xy = 0.5 * EncodeNormal(normalize(nor)) + 0.5;
EncodedNormal.z = 1.;
2014-01-18 19:32:08 -05:00
}