grk_5sem_labs/cw 1/shaders/shader_1_1.vert

9 lines
112 B
GLSL
Raw Normal View History

2023-11-18 02:25:43 +01:00
#version 430 core
layout(location = 0) in vec4 vertexPosition;
void main()
{
gl_Position = vertexPosition;
}