mirror of
https://github.com/SangeloDev/SangeFault.git
synced 2024-11-10 07:32:43 +00:00
a50683c84e
basically starting over... this is gonna be fun!
25 lines
477 B
GLSL
25 lines
477 B
GLSL
#version 150
|
|
|
|
#moj_import <fog.glsl>
|
|
|
|
in vec3 Position;
|
|
in vec2 UV0;
|
|
in vec4 Color;
|
|
in ivec2 UV2;
|
|
|
|
uniform sampler2D Sampler2;
|
|
|
|
uniform mat4 ModelViewMat;
|
|
uniform mat4 ProjMat;
|
|
|
|
out float vertexDistance;
|
|
out vec2 texCoord0;
|
|
out vec4 vertexColor;
|
|
|
|
void main() {
|
|
gl_Position = ProjMat * ModelViewMat * vec4(Position, 1.0);
|
|
|
|
vertexDistance = cylindrical_distance(ModelViewMat, Position);
|
|
texCoord0 = UV0;
|
|
vertexColor = Color * texelFetch(Sampler2, UV2 / 16, 0);
|
|
}
|