From f8af4c44d17b94ab814f1784060388afd7a24e03 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sat, 26 Jan 2019 14:54:29 +0500 Subject: Removed previous implementation of Shader --- cwd/shaders/fbo.vs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 cwd/shaders/fbo.vs (limited to 'cwd/shaders/fbo.vs') diff --git a/cwd/shaders/fbo.vs b/cwd/shaders/fbo.vs deleted file mode 100644 index e1e8966..0000000 --- a/cwd/shaders/fbo.vs +++ /dev/null @@ -1,11 +0,0 @@ -#version 330 core -layout (location = 0) in vec2 Pos; -layout (location = 1) in vec2 TextureCoords; - -out vec2 TexCoords; - -void main() -{ - gl_Position = vec4(Pos.x, Pos.y, 0.0, 1.0); - TexCoords = TextureCoords; -} \ No newline at end of file -- cgit v1.2.3