summaryrefslogtreecommitdiffstats
path: root/cwd/shaders/block.vs
diff options
context:
space:
mode:
Diffstat (limited to 'cwd/shaders/block.vs')
-rw-r--r--cwd/shaders/block.vs15
1 files changed, 15 insertions, 0 deletions
diff --git a/cwd/shaders/block.vs b/cwd/shaders/block.vs
new file mode 100644
index 0000000..7a36a5d
--- /dev/null
+++ b/cwd/shaders/block.vs
@@ -0,0 +1,15 @@
+#version 330 core
+layout (location = 0) in vec3 position;
+layout (location = 2) in vec2 UvCoordinates;
+
+out vec2 UvPosition;
+
+uniform mat4 model;
+uniform mat4 view;
+uniform mat4 projection;
+
+void main()
+{
+ gl_Position = projection * view * model * vec4(position, 1.0f);
+ UvPosition = vec2(UvCoordinates.x,UvCoordinates.y);
+} \ No newline at end of file