summaryrefslogtreecommitdiffstats
path: root/cwd/shaders/simple.fs
diff options
context:
space:
mode:
Diffstat (limited to 'cwd/shaders/simple.fs')
-rw-r--r--cwd/shaders/simple.fs7
1 files changed, 7 insertions, 0 deletions
diff --git a/cwd/shaders/simple.fs b/cwd/shaders/simple.fs
new file mode 100644
index 0000000..34cc192
--- /dev/null
+++ b/cwd/shaders/simple.fs
@@ -0,0 +1,7 @@
+#version 330 core
+
+uniform vec3 color;
+
+void main(){
+ gl_FragColor = vec4(color,1);
+} \ No newline at end of file