diff options
| author | Jeremy Hayes <jeremy@lunarg.com> | 2015-06-18 16:21:56 -0600 |
|---|---|---|
| committer | Jeremy Hayes <jeremy@lunarg.com> | 2015-06-18 16:30:16 -0600 |
| commit | 0f90d51e29ef732180c0b6e3ea8d7e4b72d18ffc (patch) | |
| tree | bf4b63880cebfeb9dd4172479323e89bb98b316d | |
| parent | da2f7f2d403eed46e9a125830d8c59bc292fbd2e (diff) | |
| download | usermoji-0f90d51e29ef732180c0b6e3ea8d7e4b72d18ffc.tar.xz | |
demos: Fix output location in tri.vert.
| -rw-r--r-- | demos/tri.vert | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
