diff options
Diffstat (limited to 'shaders/fill.vertex')
| -rw-r--r-- | shaders/fill.vertex | 8 |
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 | |||
| 3 | layout(location = 0) in vec3 vertexPosition; | ||
| 4 | |||
| 5 | void main() | ||
| 6 | { | ||
| 7 | gl_Position = vec4(vertexPosition, 1); | ||
| 8 | } | ||
