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 --- source/shaders/cubemap.vs.glsl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 source/shaders/cubemap.vs.glsl (limited to 'source/shaders/cubemap.vs.glsl') diff --git a/source/shaders/cubemap.vs.glsl b/source/shaders/cubemap.vs.glsl new file mode 100644 index 0000000..956673a --- /dev/null +++ b/source/shaders/cubemap.vs.glsl @@ -0,0 +1,14 @@ +#version 330 core +layout(location=0) in vec3 aPos; + +uniform mat4 Model; +uniform mat4 View; +uniform mat4 Projection; + +out vec3 TexCoords; + +void main() { + vec4 pos = Projection*View*vec4(aPos, 1.0); + gl_Position = vec4(pos.xyww); + TexCoords = aPos; +}; -- cgit v1.2.3