From 0f90d51e29ef732180c0b6e3ea8d7e4b72d18ffc Mon Sep 17 00:00:00 2001 From: Jeremy Hayes Date: Thu, 18 Jun 2015 16:21:56 -0600 Subject: demos: Fix output location in tri.vert. --- demos/tri.vert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/tri.vert b/demos/tri.vert index 928aa4bb..9915a6bd 100644 --- a/demos/tri.vert +++ b/demos/tri.vert @@ -6,7 +6,7 @@ #extension GL_ARB_shading_language_420pack : enable layout (location = 0) in vec4 pos; layout (location = 1) in vec2 attr; -out vec2 texcoord; +layout (location = 0) out vec2 texcoord; void main() { texcoord = attr; gl_Position = pos; -- cgit v1.2.3