From 2580d6d5270c9a805a1a51da7aeb6a3d6c5bc599 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Sun, 22 Feb 2026 14:33:22 +0100 Subject: [PATCH] remove unused inputs from instancing vertex shader --- shader/instancing_vertex.glsl | 3 --- 1 file changed, 3 deletions(-) diff --git a/shader/instancing_vertex.glsl b/shader/instancing_vertex.glsl index d5c2faa..3af83a5 100644 --- a/shader/instancing_vertex.glsl +++ b/shader/instancing_vertex.glsl @@ -1,9 +1,6 @@ #version 330 in vec3 vertexPosition; -in vec2 vertexTexCoord; -in vec3 vertexNormal; -in vec4 vertexColor; in mat4 instanceTransform; uniform mat4 mvp;