From 951d16c0e08c19aa979fbcaf8658967c49f044d3 Mon Sep 17 00:00:00 2001 From: peppemas Date: Fri, 19 Jun 2020 16:24:29 +0200 Subject: [PATCH] Fix bug #1270 --- examples/models/models_skybox.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/models/models_skybox.c b/examples/models/models_skybox.c index c2849032d..8d271cc0c 100644 --- a/examples/models/models_skybox.c +++ b/examples/models/models_skybox.c @@ -35,6 +35,7 @@ int main(void) skybox.materials[0].shader = LoadShader("resources/shaders/glsl100/skybox.vs", "resources/shaders/glsl100/skybox.fs"); #endif SetShaderValue(skybox.materials[0].shader, GetShaderLocation(skybox.materials[0].shader, "environmentMap"), (int[1]){ MAP_CUBEMAP }, UNIFORM_INT); + SetShaderValue(skybox.materials[0].shader, GetShaderLocation(skybox.materials[0].shader, "vflipped"), (int[1]){ 1 }, UNIFORM_INT); // Load cubemap shader and setup required shader locations #if defined(PLATFORM_DESKTOP)