easy-osm2city-podman/full/fgdata/Shaders/include_fog.vert
fly fccef75347 Two stage osm2city container build
Signed-off-by: fly <merspieler@airmail.cc>
2023-09-03 16:14:26 +02:00

12 lines
295 B
GLSL

#version 120
//varying float fogCoord;
varying vec3 PointPos;
//varying vec4 EyePos;
void fog_Func(int type)
{
PointPos = (gl_ModelViewMatrix * gl_Vertex).xyz;
//PointPos = gl_Vertex;
//EyePos = gl_ModelViewMatrixInverse * vec4(0.0,0.0,0.0,1.0);
//fogCoord = abs(ecPosition.z);
}