diff options
Diffstat (limited to 'demo.vs')
| -rw-r--r-- | demo.vs | 7 | 
1 files changed, 4 insertions, 3 deletions
@@ -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  | 
