Interactive_Computer_Graphi.../Uebung_21122023/Quad/shaders/simple.vert.glsl

11 lines
141 B
Plaintext
Raw Normal View History

2023-12-19 20:04:36 +00:00
#version 300 es
in vec4 vPosition;
in vec4 vColor;
out vec4 vfColor;
void main()
{
vfColor = vColor;
gl_Position = vPosition;
}