From 3dff7f3a8ca2e81e5ddf35e1cb85c11b5cf64ba4 Mon Sep 17 00:00:00 2001 From: 0scar Date: Sun, 18 Feb 2024 12:31:04 +0100 Subject: Update shader paths --- shader.vert | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 shader.vert (limited to 'shader.vert') diff --git a/shader.vert b/shader.vert deleted file mode 100644 index e5aff9a..0000000 --- a/shader.vert +++ /dev/null @@ -1,23 +0,0 @@ -#version 330 core - -// Input vertex data, different for all executions of this shader. -layout(location = 0) in vec3 vertexPosition_modelspace; -layout(location = 1) in vec2 vertexUV; - -out vec2 UV; - -uniform mat4 MVP; - -void main() { - - gl_Position = MVP * vec4(vertexPosition_modelspace, 1); - - UV = vertexUV; - - //fragmentcolor.x = vertexPosition_modelspace.x; //= vertexColor; - //fragmentcolor.y = vertexPosition_modelspace.y; //= vertexColor; - //fragmentcolor.z = vertexPosition_modelspace.z; //= vertexColor; - - //fragmentcolor += 1; - //fragmentcolor /= 2; -} -- cgit v1.3