From b192dcec842cf043ae936c446bb252259b415ab5 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Wed, 7 Jun 2017 19:21:39 +0500 Subject: 2017-06-07 --- cwd/shaders/simple.vs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 cwd/shaders/simple.vs (limited to 'cwd/shaders/simple.vs') diff --git a/cwd/shaders/simple.vs b/cwd/shaders/simple.vs deleted file mode 100644 index ca99e85..0000000 --- a/cwd/shaders/simple.vs +++ /dev/null @@ -1,16 +0,0 @@ -#version 330 core -layout (location = 0) in vec3 position; -layout (location = 2) in vec2 texCoord; - -out vec2 TexCoord; - -uniform mat4 model; -uniform mat4 view; -uniform mat4 projection; - -void main() -{ - gl_Position = projection * view * model * vec4(position, 1.0f); - TexCoord = vec2(texCoord.x, texCoord.y); - //TexCoord = texCoord; -} \ No newline at end of file -- cgit v1.2.3