summaryrefslogtreecommitdiff
path: root/source/shaders/refr.fs.glsl
diff options
context:
space:
mode:
authortalha <talha@talhaamir.xyz>2024-04-16 02:04:23 +0500
committertalha <talha@talhaamir.xyz>2024-04-16 02:04:23 +0500
commit9900ffe840ee0e9f914b0e7956a4e80ffb553e9e (patch)
treea14afd9826f1b0b9c2cf24c9958f2646c82321db /source/shaders/refr.fs.glsl
parent6cc8297634377bffc1dce05f1df754ac4e54177a (diff)
Added refraction, albeit slightly limited
Diffstat (limited to 'source/shaders/refr.fs.glsl')
-rw-r--r--source/shaders/refr.fs.glsl15
1 files changed, 15 insertions, 0 deletions
diff --git a/source/shaders/refr.fs.glsl b/source/shaders/refr.fs.glsl
new file mode 100644
index 0000000..6747ded
--- /dev/null
+++ b/source/shaders/refr.fs.glsl
@@ -0,0 +1,15 @@
+#version 330 core
+
+in vec3 Normal;
+in vec3 Position;
+
+uniform samplerCube skybox;
+uniform vec3 cameraPos;
+out vec4 FragColor;
+
+void main() {
+ float refr_ratio = 1.0/1.52;
+ vec3 I = normalize(Position - cameraPos);
+ vec3 R = refract(I, normalize(Normal), refr_ratio);
+ FragColor = vec4(texture(skybox, R).rgb, 1.0);
+};