From 6ea296d997e1fed60da8e84d6a0d75a942b58977 Mon Sep 17 00:00:00 2001 From: talha Date: Tue, 16 Apr 2024 01:34:33 +0500 Subject: Learning cubemaps, added reflections --- .../lessons/framebuffers/shaders/depth_test.vs.glsl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 source/lessons/framebuffers/shaders/depth_test.vs.glsl (limited to 'source/lessons/framebuffers/shaders/depth_test.vs.glsl') diff --git a/source/lessons/framebuffers/shaders/depth_test.vs.glsl b/source/lessons/framebuffers/shaders/depth_test.vs.glsl new file mode 100644 index 0000000..b3b81cc --- /dev/null +++ b/source/lessons/framebuffers/shaders/depth_test.vs.glsl @@ -0,0 +1,19 @@ +#version 330 core +layout(location=0) in vec3 aPos; +layout(location=1) in vec2 aTex; + +uniform mat4 Model; +uniform mat4 View; +uniform mat4 Projection; + +out vec2 TexCoords; +out vec3 VertexWorldPos; + +// @note: I still do not fully understand how the FragNormal calculation works. Need to make sure I intuitively +// get that + +void main() { + gl_Position = Projection*View*Model*vec4(aPos, 1.0); + VertexWorldPos = vec3(Model * vec4(aPos, 1.0)); + TexCoords = aTex; +}; -- cgit v1.2.3