summaryrefslogtreecommitdiff
path: root/shaders/vert_quad.glsl
diff options
context:
space:
mode:
authorHunter Kvalevog <hunter@kvog.sh>2026-02-21 21:34:50 -0600
committerHunter Kvalevog <hunter@kvog.sh>2026-02-21 21:34:50 -0600
commit11379c6617602dbb8220fa83fcd544aaf94ab57d (patch)
tree9239184101406878478ccfd11ecc68d94b56fe79 /shaders/vert_quad.glsl
parentf7495d74d13d2fdf616bed25cb1d39d69243559d (diff)
shaders: Moved demos to https://fragcoord.xyz/u/kvog
Diffstat (limited to 'shaders/vert_quad.glsl')
-rw-r--r--shaders/vert_quad.glsl23
1 files changed, 0 insertions, 23 deletions
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);
-}