diff options
author | sanine-a <sanine.not@pm.me> | 2020-05-21 10:16:59 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-05-21 10:16:59 -0500 |
commit | 8b7e8a1a3e77b4e3b56ea9025af8b254faa16c13 (patch) | |
tree | 3f39bb785d5f1df1f026589a6cc1aa2749e30e6d /demo.vs | |
parent | 9b66b322b600ab0db66cb6f3ff5a7c4196b9193f (diff) |
add textured cube primitive
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 |