summaryrefslogtreecommitdiff
path: root/src/gauge.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/gauge.frag')
-rw-r--r--src/gauge.frag4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gauge.frag b/src/gauge.frag
new file mode 100644
index 0000000..1c3f17a
--- /dev/null
+++ b/src/gauge.frag
@@ -0,0 +1,4 @@
+#version 450
+layout(location = 0) in vec4 v_col;
+layout(location = 0) out vec4 o_col;
+void main() { o_col = v_col; }