From b0aadeeffa84efecf3e2ef92407f3be7c71545d0 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Wed, 30 Oct 2024 12:01:31 -0400 Subject: ball colorss --- balls.vert | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'balls.vert') diff --git a/balls.vert b/balls.vert index 8313b06..7d21548 100644 --- a/balls.vert +++ b/balls.vert @@ -1,8 +1,12 @@ #version 130 in vec4 in_coords; +in vec3 in_color; +out vec3 new_color; void main(void) { + new_color = in_color; + gl_Position = in_coords; } -- cgit v1.2.3