stk-code_catmod/data/shaders/objectref_pass2.frag

20 lines
370 B
GLSL
Raw Normal View History

2014-01-18 19:32:08 -05:00
uniform sampler2D Albedo;
#if __VERSION__ >= 130
2014-01-18 19:32:08 -05:00
in vec2 uv;
out vec4 FragColor;
#else
varying vec2 uv;
#define FragColor gl_FragColor
#endif
2014-03-21 13:36:47 -04:00
vec3 getLightFactor(float specMapValue);
2014-01-18 19:32:08 -05:00
void main(void)
{
vec4 color = texture(Albedo, uv);
2014-01-18 20:13:00 -05:00
if (color.a < 0.5) discard;
2014-03-21 13:36:47 -04:00
vec3 LightFactor = getLightFactor(1.);
FragColor = vec4(color.xyz * LightFactor, 1.);
2014-01-18 19:32:08 -05:00
}