mirror of
https://github.com/SangeloDev/SangeFault.git
synced 2024-11-13 00:52:43 +00:00
a50683c84e
basically starting over... this is gonna be fun!
16 lines
282 B
GLSL
16 lines
282 B
GLSL
#version 150
|
|
|
|
#moj_import <fog.glsl>
|
|
|
|
in vec3 Position;
|
|
|
|
uniform mat4 ModelViewMat;
|
|
uniform mat4 ProjMat;
|
|
|
|
out float vertexDistance;
|
|
|
|
void main() {
|
|
gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0);
|
|
|
|
vertexDistance = cylindrical_distance(ModelViewMat, Position);
|
|
}
|