diff options
Diffstat (limited to 'shaders/vertex.vsh')
-rw-r--r-- | shaders/vertex.vsh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/shaders/vertex.vsh b/shaders/vertex.vsh deleted file mode 100644 index 987dc3b..0000000 --- a/shaders/vertex.vsh +++ /dev/null @@ -1,13 +0,0 @@ -# version 330 core - -layout (location = 0) in vec3 aPos; -layout (location = 1) in vec3 aColor; -uniform mat4 model, view, proj; - -out vec3 vertexColor; - -void main() -{ - gl_Position = proj * view * model * vec4(aPos, 1.0f); - vertexColor = aColor; -} |