[Bf-blender-cvs] [22abc205aca] master: Fix T69743: Armature display issues with Intel 5x0 GPU

mano-wii noreply at git.blender.org
Tue Sep 24 13:49:55 CEST 2019


Commit: 22abc205aca26ac75f2d192962e963a761af09f7
Author: mano-wii
Date:   Tue Sep 24 08:46:33 2019 -0300
Branches: master
https://developer.blender.org/rB22abc205aca26ac75f2d192962e963a761af09f7

Fix T69743: Armature display issues with Intel 5x0 GPU

Apparently this workaround solves the problem.

===================================================================

M	source/blender/gpu/intern/gpu_extensions.c

===================================================================

diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c
index 4164db2c469..8368577a05d 100644
--- a/source/blender/gpu/intern/gpu_extensions.c
+++ b/source/blender/gpu/intern/gpu_extensions.c
@@ -395,6 +395,11 @@ void gpu_extensions_init(void)
       GG.glew_arb_base_instance_is_supported = false;
       GG.context_local_shaders_workaround = true;
     }
+
+    if (strstr(version, "Build 20.19.15.4285")) {
+      /* Somehow fixes armature display issues (see T69743). */
+      GG.context_local_shaders_workaround = true;
+    }
   }
 
   GPU_invalid_tex_init();



More information about the Bf-blender-cvs mailing list