From 559a129d2c3cce67f5044969b76621e21a3f2ba7 Mon Sep 17 00:00:00 2001 From: baldurk Date: Fri, 1 Dec 2023 11:44:44 +0000 Subject: [PATCH] Fix vertex linking in GL_Mesh_Zoo to write to col2 properly --- util/test/demos/gl/gl_mesh_zoo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/util/test/demos/gl/gl_mesh_zoo.cpp b/util/test/demos/gl/gl_mesh_zoo.cpp index 563fe7458..746515fef 100644 --- a/util/test/demos/gl/gl_mesh_zoo.cpp +++ b/util/test/demos/gl/gl_mesh_zoo.cpp @@ -84,6 +84,7 @@ void main() gl_Position = verts[gl_VertexID%3]; col = vec4(0, 1, 1, 1); + col2 = vec2(0.5, 0.5); basevtx = gl_BaseVertex; baseinst = gl_BaseInstance;