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_quad.glsl | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 shaders/vert_quad.glsl (limited to 'shaders/vert_quad.glsl') diff --git a/shaders/vert_quad.glsl b/shaders/vert_quad.glsl deleted file mode 100644 index 611ae61..0000000 --- a/shaders/vert_quad.glsl +++ /dev/null @@ -1,23 +0,0 @@ -#version 330 core - -// -------------------------------------------------------------------------------- -// Vertex inputs -// -------------------------------------------------------------------------------- -layout (location = 0) in vec2 v_in_p; -layout (location = 1) in vec2 v_in_t; - -// -------------------------------------------------------------------------------- -// Vertex outputs -// -------------------------------------------------------------------------------- -out vec2 v_p; -out vec2 v_t; - -// -------------------------------------------------------------------------------- -// Main -// -------------------------------------------------------------------------------- -void main() -{ - v_p = v_in_p; - v_t = v_in_t; - gl_Position = vec4(v_p.x, v_p.y, -1.0f, 1.0f); -} -- cgit v1.2.3