diff options
Diffstat (limited to 'mesh_loading_test/shaders/default.vs')
-rw-r--r-- | mesh_loading_test/shaders/default.vs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/mesh_loading_test/shaders/default.vs b/mesh_loading_test/shaders/default.vs deleted file mode 100644 index 90e883a..0000000 --- a/mesh_loading_test/shaders/default.vs +++ /dev/null @@ -1,16 +0,0 @@ -#version 330 core -layout(location = 0) in vec3 apos; -layout(location = 2) in vec2 atex_coords; - -out vec2 tex_coords; - -uniform mat4 projection; -uniform mat4 view; -uniform mat4 model; - -void -main(void) -{ - tex_coords = atex_coords; - gl_Position = projection*view*model*vec4(apos, 1.0); -} |