a2052b77b9
We can share the same uniform name, esp flat out is not working for my adreno 306 in android 5.0
26 lines
743 B
GLSL
26 lines
743 B
GLSL
uniform sampler2D tex;
|
|
uniform sampler2D dtex;
|
|
uniform float billboard;
|
|
|
|
in vec2 tc;
|
|
in vec4 pc;
|
|
out vec4 FragColor;
|
|
|
|
#stk_include "utils/getPosFromUVDepth.frag"
|
|
|
|
void main(void)
|
|
{
|
|
float billboard_alpha = mix(1.0, texture(tex, tc).a, billboard);
|
|
#if defined(Advanced_Lighting_Enabled)
|
|
vec2 xy = gl_FragCoord.xy / u_screen;
|
|
float FragZ = gl_FragCoord.z;
|
|
vec4 FragmentPos = getPosFromUVDepth(vec3(xy, FragZ), u_inverse_projection_matrix);
|
|
float EnvZ = texture(dtex, xy).x;
|
|
vec4 EnvPos = getPosFromUVDepth(vec3(xy, EnvZ), u_inverse_projection_matrix);
|
|
float alpha = clamp((EnvPos.z - FragmentPos.z) * 0.3, 0., 1.);
|
|
#else
|
|
float alpha = 1.0;
|
|
#endif
|
|
FragColor = texture(tex, tc) * billboard_alpha * pc * alpha;
|
|
}
|