summaryrefslogtreecommitdiff
path: root/demo.vs
diff options
context:
space:
mode:
Diffstat (limited to 'demo.vs')
-rw-r--r--demo.vs7
1 files changed, 4 insertions, 3 deletions
diff --git a/demo.vs b/demo.vs
index 2c62f90..33a6956 100644
--- a/demo.vs
+++ b/demo.vs
@@ -1,7 +1,8 @@
#version 330 core
layout (location = 0) in vec3 position;
+layout (location = 1) in vec2 texCoord;
-out vec4 color;
+out vec2 texture_coordinate;
uniform mat4 model;
uniform mat4 view;
@@ -10,5 +11,5 @@ uniform mat4 projection;
void main()
{
gl_Position = projection * view * model * vec4(position.xyz, 1.0);
- color = vec4(0, 1, 1, 1);
-} \ No newline at end of file
+ texture_coordinate = texCoord;
+} \ No newline at end of file