summaryrefslogtreecommitdiff
path: root/src/fs.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs.glsl')
-rw-r--r--src/fs.glsl7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/fs.glsl b/src/fs.glsl
new file mode 100644
index 0000000..d2dd6bb
--- /dev/null
+++ b/src/fs.glsl
@@ -0,0 +1,7 @@
+in vec3 v_color;
+
+out vec3 frag_color;
+
+void main() {
+ frag_color = v_color;
+}