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

14 lines
269 B
GLSL

#version 330 core
layout(location = 0) in vec4 pos;
layout(location = 3) in vec4 multitexcoord0;
out vec2 texcoord;
uniform mat4 osg_ModelViewProjectionMatrix;
void main()
{
gl_Position = osg_ModelViewProjectionMatrix * pos;
texcoord = multitexcoord0.st;
}