stk-code_catmod/data/shaders/instanced_objectref_pass1.frag

30 lines
617 B
GLSL
Raw Normal View History

2014-12-18 22:09:14 +01:00
#ifndef Use_Bindless_Texture
2014-08-23 00:18:14 +02:00
uniform sampler2D tex;
2014-09-17 23:50:16 +02:00
uniform sampler2D glosstex;
2014-08-23 00:18:14 +02:00
#endif
2014-12-18 22:09:14 +01:00
#ifdef Use_Bindless_Texture
2014-08-23 00:18:14 +02:00
flat in sampler2D handle;
2014-09-17 23:50:16 +02:00
flat in sampler2D secondhandle;
2014-08-23 00:18:14 +02:00
#endif
in vec3 nor;
in vec2 uv;
out vec3 EncodedNormal;
vec2 EncodeNormal(vec3 n);
void main() {
2014-12-18 22:09:14 +01:00
#ifdef Use_Bindless_Texture
2014-08-23 00:18:14 +02:00
vec4 col = texture(handle, uv);
2014-09-17 23:50:16 +02:00
float glossmap = texture(secondhandle, uv).x;
2014-08-23 00:18:14 +02:00
#else
vec4 col = texture(tex, uv);
2014-09-17 23:50:16 +02:00
float glossmap = texture(glosstex, uv).x;
2014-08-23 00:18:14 +02:00
#endif
if (col.a < 0.5)
discard;
EncodedNormal.xy = 0.5 * EncodeNormal(normalize(nor)) + 0.5;
EncodedNormal.z = glossmap;
2014-08-23 00:18:14 +02:00
}