From 11379c6617602dbb8220fa83fcd544aaf94ab57d Mon Sep 17 00:00:00 2001 From: Hunter Kvalevog Date: Sat, 21 Feb 2026 21:34:50 -0600 Subject: shaders: Moved demos to https://fragcoord.xyz/u/kvog --- shaders/vert_cube.glsl | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 shaders/vert_cube.glsl (limited to 'shaders/vert_cube.glsl') diff --git a/shaders/vert_cube.glsl b/shaders/vert_cube.glsl deleted file mode 100644 index 629b5cd..0000000 --- a/shaders/vert_cube.glsl +++ /dev/null @@ -1,31 +0,0 @@ -#version 330 core - -// -------------------------------------------------------------------------------- -// Uniforms -// -------------------------------------------------------------------------------- -uniform mat4 u_vmat; - -// -------------------------------------------------------------------------------- -// Vertex inputs -// -------------------------------------------------------------------------------- -layout (location = 0) in vec3 v_in_p; -layout (location = 1) in vec2 v_in_t; -layout (location = 2) in vec3 v_in_n; - -// -------------------------------------------------------------------------------- -// Vertex outputs -// -------------------------------------------------------------------------------- -out vec3 v_p; -out vec2 v_t; -out vec3 v_n; - -// -------------------------------------------------------------------------------- -// Main -// -------------------------------------------------------------------------------- -void main() -{ - v_p = v_in_p; - v_t = v_in_t; - v_n = v_in_n; - gl_Position = u_vmat * vec4(v_p, 1.0f); -} -- cgit v1.2.3