aboutsummaryrefslogtreecommitdiffstats
path: root/Shaders
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 23:33:25 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-31 23:33:25 -0400
commit0f0400ab9e85a439bce2e913400d55a160d1bd7b (patch)
treed0999dca236fc21c1604f7b758e377bc7e3e37bf /Shaders
parente0498738ea274d60ece3756697ac51602ab087d1 (diff)
Added basic shader files
Diffstat (limited to 'Shaders')
-rw-r--r--Shaders/world.frag17
-rw-r--r--Shaders/world.vert15
2 files changed, 32 insertions, 0 deletions
diff --git a/Shaders/world.frag b/Shaders/world.frag
new file mode 100644
index 0000000..c23c923
--- /dev/null
+++ b/Shaders/world.frag
@@ -0,0 +1,17 @@
+#version 430
+
+#ifdef GL_FRAGMENT_PRECISION_HIGH
+precision highp float;
+#else
+precision mediump float;
+#endif
+
+//uniform sampler2D texture;
+
+//in vec3 texCoord;
+out vec4 FragColor;
+
+void main()
+{
+ FragColor = vec4(1.0, 0.0, 0.0, 1.0);
+}
diff --git a/Shaders/world.vert b/Shaders/world.vert
new file mode 100644
index 0000000..795997a
--- /dev/null
+++ b/Shaders/world.vert
@@ -0,0 +1,15 @@
+#version 430
+
+//layout(location = 0)in vec3 vertex;
+in vec3 vertex;
+
+uniform mat4 projection;
+uniform mat4 view;
+uniform mat4 model;
+
+//out vec3 texCoord;
+
+void main()
+{
+ gl_Position = projection * view * model * vec4(vertex, 1.0f);
+}