summary refs log tree commit diff stats
path: root/shaders/fill.vertex
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/fill.vertex')
-rw-r--r--shaders/fill.vertex8
1 files changed, 8 insertions, 0 deletions
diff --git a/shaders/fill.vertex b/shaders/fill.vertex new file mode 100644 index 0000000..44445fe --- /dev/null +++ b/shaders/fill.vertex
@@ -0,0 +1,8 @@
1#version 330 core
2
3layout(location = 0) in vec3 vertexPosition;
4
5void main()
6{
7 gl_Position = vec4(vertexPosition, 1);
8}