diff options
Diffstat (limited to 'Shaders/world.vert')
-rw-r--r-- | Shaders/world.vert | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Shaders/world.vert b/Shaders/world.vert index 795997a..743ff3d 100644 --- a/Shaders/world.vert +++ b/Shaders/world.vert @@ -2,14 +2,16 @@ //layout(location = 0)in vec3 vertex; in vec3 vertex; +in vec2 texc; uniform mat4 projection; uniform mat4 view; uniform mat4 model; -//out vec3 texCoord; +out vec2 texCoord; void main() { + texCoord = texc; gl_Position = projection * view * model * vec4(vertex, 1.0f); } |