VoxelEngine/res/crosshair.glslv
2021-04-25 16:08:48 +03:00

8 lines
120 B
GLSL

#version 330 core
layout (location = 0) in vec2 v_position;
void main(){
gl_Position = vec4(v_position, 0.0, 1.0);
}