axmol/tests/cpp-tests/Resources/Sprite3DTest/fog.vert

32 lines
1.1 KiB
GLSL
Raw Normal View History

2015-01-07 11:47:34 +08:00
attribute vec4 a_position;
attribute vec2 a_texCoord;
2015-01-07 17:58:10 +08:00
varying float v_fogFactor; //weight for fog
2015-01-07 11:47:34 +08:00
varying vec2 v_texture_coord;
2015-01-07 17:58:10 +08:00
uniform float u_fogDensity;// For exp and exp2 equation
uniform float u_fogStart; // This is only for linear fog
uniform float u_fogEnd; // This is only for linear fog
uniform int u_fogEquation; // 0 = linear, 1 = exp, 2 = exp2
2015-01-07 11:47:34 +08:00
2019-03-13 15:06:30 +08:00
uniform mat4 u_MVPMatrix;
2015-01-07 11:47:34 +08:00
void main(void)
{
2019-03-13 15:06:30 +08:00
gl_Position = u_MVPMatrix * a_position;
2015-01-07 11:47:34 +08:00
v_texture_coord = a_texCoord;
2015-01-07 17:58:10 +08:00
float fogFragCoord = abs(gl_Position.z); //get fog distance
2015-01-07 11:47:34 +08:00
2015-01-07 17:58:10 +08:00
if(u_fogEquation == 0)
v_fogFactor = (u_fogEnd-fogFragCoord )/(u_fogEnd-u_fogStart); //linear fog
else if(u_fogEquation == 1)
v_fogFactor = exp(-u_fogDensity*fogFragCoord ); //exp fog
else if(u_fogEquation == 2)
v_fogFactor = exp(-pow(u_fogDensity*fogFragCoord , 2.0)); //exp2 fog
2015-01-07 11:47:34 +08:00
2015-01-07 17:58:10 +08:00
v_fogFactor = clamp(v_fogFactor, 0.0, 1.0); //clamp 0 to 1
2015-01-07 11:47:34 +08:00
}