From 135630f64564d5ccd450e8267820415ea296d069 Mon Sep 17 00:00:00 2001 From: MikiZX1 <161243635+MikiZX1@users.noreply.github.com> Date: Sat, 18 Jan 2025 15:55:00 +0100 Subject: [PATCH] Update deferred_shading.vs for GLES3 --- .../shaders/glsl100/deferred_shading.vs | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/examples/shaders/resources/shaders/glsl100/deferred_shading.vs b/examples/shaders/resources/shaders/glsl100/deferred_shading.vs index bb108ce09..50f94132c 100644 --- a/examples/shaders/resources/shaders/glsl100/deferred_shading.vs +++ b/examples/shaders/resources/shaders/glsl100/deferred_shading.vs @@ -1,16 +1,13 @@ -#version 100 +#version 300 es -// Input vertex attributes -attribute vec3 vertexPosition; -attribute vec2 vertexTexCoord; +precision highp float; -// Output vertex attributes (to fragment shader) -varying vec2 fragTexCoord; +layout (location = 0) in vec3 vertexPosition; +layout (location = 1) in vec2 vertexTexCoord; -void main() -{ - fragTexCoord = vertexTexCoord; +out vec2 texCoord; - // Calculate final vertex position - gl_Position = vec4(vertexPosition, 1.0); +void main() { + gl_Position = vec4(vertexPosition, 1.0); + texCoord = vertexTexCoord; }