summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/lighting.vs
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-04-15 00:08:20 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2023-04-15 00:08:20 +0100
commit48ec3a869029bad34773516df193519a4fe9103a (patch)
tree9539b9a849a2bf5dbb7c407b754d7fae2fcbcfd7 /gfx/gl/shaders/lighting.vs
parentMerge branch 'assimp' (diff)
downloadilt-48ec3a869029bad34773516df193519a4fe9103a.tar.bz2
ilt-48ec3a869029bad34773516df193519a4fe9103a.tar.xz
ilt-48ec3a869029bad34773516df193519a4fe9103a.zip
Rename lots of shader files
Names and paths still not perfect, but better and the weird name missuse is gone
Diffstat (limited to 'gfx/gl/shaders/lighting.vs')
-rw-r--r--gfx/gl/shaders/lighting.vs12
1 files changed, 12 insertions, 0 deletions
diff --git a/gfx/gl/shaders/lighting.vs b/gfx/gl/shaders/lighting.vs
new file mode 100644
index 0000000..e07cd0a
--- /dev/null
+++ b/gfx/gl/shaders/lighting.vs
@@ -0,0 +1,12 @@
+#version 330 core
+
+in ivec4 position;
+
+out vec2 TexCoords;
+
+void
+main()
+{
+ gl_Position = vec4(position.xy, 0.0, 1.0);
+ TexCoords = position.zw;
+}