aboutsummaryrefslogtreecommitdiffstats
path: root/frag.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'frag.glsl')
-rw-r--r--frag.glsl9
1 files changed, 9 insertions, 0 deletions
diff --git a/frag.glsl b/frag.glsl
new file mode 100644
index 0000000..aa5ec0f
--- /dev/null
+++ b/frag.glsl
@@ -0,0 +1,9 @@
+// Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com>
+// SPDX-License-Identifier: MIT
+#version 330 core
+out vec4 color;
+
+void main()
+{
+ color = vec4(1.0f, 0.5f, 0.2f, 1.0f);
+}