From 86c7bdee944ce2f60d63124e9ddb76198ddbc676 Mon Sep 17 00:00:00 2001 From: jvech Date: Sun, 11 Sep 2022 13:54:51 -0500 Subject: learn: 14. Materials learnopengl book --- shaders/vertex.vsh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 shaders/vertex.vsh (limited to 'shaders/vertex.vsh') 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; -} -- cgit v1.2.3-70-g09d2