summaryrefslogtreecommitdiff
path: root/source/lessons/framebuffers/shaders/depth_test.fs.glsl
diff options
context:
space:
mode:
authortalha <talha@talhaamir.xyz>2024-04-16 01:34:33 +0500
committertalha <talha@talhaamir.xyz>2024-04-16 01:34:33 +0500
commit6ea296d997e1fed60da8e84d6a0d75a942b58977 (patch)
treed8f0ab8ccee5c0fa3af5264623d46311a50c4f9e /source/lessons/framebuffers/shaders/depth_test.fs.glsl
parent56b932fe77b313e7c7ca2c5b359dc84348667602 (diff)
Learning cubemaps, added reflections
Diffstat (limited to 'source/lessons/framebuffers/shaders/depth_test.fs.glsl')
-rw-r--r--source/lessons/framebuffers/shaders/depth_test.fs.glsl30
1 files changed, 30 insertions, 0 deletions
diff --git a/source/lessons/framebuffers/shaders/depth_test.fs.glsl b/source/lessons/framebuffers/shaders/depth_test.fs.glsl
new file mode 100644
index 0000000..796d849
--- /dev/null
+++ b/source/lessons/framebuffers/shaders/depth_test.fs.glsl
@@ -0,0 +1,30 @@
+#version 330 core
+
+
+in vec2 TexCoords;
+in vec3 VertexWorldPos;
+uniform sampler2D TexId;
+out vec4 FragColor;
+
+uniform float near = 0.1f;
+uniform float far = 100.0f;
+
+/* @note
+float linear_fragment_depth = MakeDepthLinear(non_linear_fragment_depth);
+float scaled_lfd = linear_fragment_depth/far;
+
+gives us the z value in eye space.
+This is purely for learning purposes.
+The equation used in MakeDepthLinear is derived from the PerspectiveProjectionMatrix.
+Take a look at the equation for that in the codebase
+or here: https://www.songho.ca/opengl/gl_projectionmatrix.html
+*/
+float MakeDepthLinear(float depth) {
+ float ndc = 2.0f*depth - 1;
+ float linear_depth = (2.0 * far * near)/(far + near - ndc*(far - near));
+ return linear_depth;
+}
+
+void main() {
+ FragColor = texture(TexId, TexCoords);
+}