summary refs log tree commit diff stats
path: root/shaders/fill.fragment
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/fill.fragment')
-rw-r--r--shaders/fill.fragment10
1 files changed, 10 insertions, 0 deletions
diff --git a/shaders/fill.fragment b/shaders/fill.fragment new file mode 100644 index 0000000..ab7d9c9 --- /dev/null +++ b/shaders/fill.fragment
@@ -0,0 +1,10 @@
1#version 330 core
2
3out vec3 color;
4
5uniform vec3 vecColor;
6
7void main()
8{
9 color = vecColor;
10}