From b7c95380c2a5472198d0c1a96f9178c554280b1e Mon Sep 17 00:00:00 2001 From: firefighter198 Date: Mon, 13 Sep 2021 14:32:12 +0200 Subject: [PATCH] Uniforms --- Rendr/out/production/Rendr/Shaders/vertexShader.glsl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rendr/out/production/Rendr/Shaders/vertexShader.glsl b/Rendr/out/production/Rendr/Shaders/vertexShader.glsl index a513114..341d39f 100644 --- a/Rendr/out/production/Rendr/Shaders/vertexShader.glsl +++ b/Rendr/out/production/Rendr/Shaders/vertexShader.glsl @@ -6,6 +6,8 @@ in vec2 uvs; out vec3 color; out vec2 passUvs; +uniform mat4 transformationMatrix; + void main(void) { gl_Position = vec4(position.x, position.y, position.z, 1.0);