summaryrefslogtreecommitdiff
path: root/shaders/mesh.frag
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/mesh.frag')
-rw-r--r--shaders/mesh.frag17
1 files changed, 17 insertions, 0 deletions
diff --git a/shaders/mesh.frag b/shaders/mesh.frag
new file mode 100644
index 0000000..532d1ac
--- /dev/null
+++ b/shaders/mesh.frag
@@ -0,0 +1,17 @@
+#version 410 core
+out vec4 FragColor;
+
+in vec3 position;
+in vec3 normal;
+in vec2 tex;
+
+uniform float time;
+uniform sampler2D ourTexture;
+
+void main()
+{
+ //FragColor = vec4(sin(time), cos(time), -sin(time), 1.0f);
+ //FragColor = vec4(normal, 1.0f);
+ //FragColor = vec4(tex, 1.0f, 1.0f);
+ FragColor = texture(ourTexture, tex);
+}