summaryrefslogtreecommitdiff
path: root/shader.frag
diff options
context:
space:
mode:
author0scar <qgt268@alumni.ku.dk>2024-02-18 11:31:04 +0000
committer0undefined <oscar@nelin.dk>2025-02-26 12:50:09 +0000
commit3dff7f3a8ca2e81e5ddf35e1cb85c11b5cf64ba4 (patch)
treef9b7078183c6ccb6317a16ce0a86a57c94630b71 /shader.frag
parent6890ca55ba38682e3fc72dc6722954d376ae1277 (diff)
Update shader paths
Diffstat (limited to 'shader.frag')
-rw-r--r--shader.frag11
1 files changed, 0 insertions, 11 deletions
diff --git a/shader.frag b/shader.frag
deleted file mode 100644
index f81277d..0000000
--- a/shader.frag
+++ /dev/null
@@ -1,11 +0,0 @@
-#version 330 core
-
-// Ouput data
-in vec2 UV;
-out vec3 color;
-
-uniform sampler2D textureSampler;
-
-void main() {
- color = texture(textureSampler, UV).rgb;
-}