Commit: ce531ed1a12edcc51b717cbc12e38e8550e8f979
Author: Brecht Van Lommel
Date:   Sat Jun 24 16:44:48 2017 +0200
Branches: master
https://developer.blender.org/rBce531ed1a12edcc51b717cbc12e38e8550e8f979

Fix T50856: crash when minimizing window on AMD / Windows.

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

M       source/blender/windowmanager/intern/wm_draw.c

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

diff --git a/source/blender/windowmanager/intern/wm_draw.c 
b/source/blender/windowmanager/intern/wm_draw.c
index 77ffa46b990..25c6980f58e 100644
--- a/source/blender/windowmanager/intern/wm_draw.c
+++ b/source/blender/windowmanager/intern/wm_draw.c
@@ -926,15 +926,14 @@ void wm_draw_update(bContext *C)
        
        for (win = wm->windows.first; win; win = win->next) {
 #ifdef WIN32
-               if (GPU_type_matches(GPU_DEVICE_INTEL, GPU_OS_ANY, 
GPU_DRIVER_ANY)) {
-                       GHOST_TWindowState state = 
GHOST_GetWindowState(win->ghostwin);
-
-                       if (state == GHOST_kWindowStateMinimized) {
-                               /* do not update minimized windows, it gives 
issues on intel drivers (see [#33223])
-                                * anyway, it seems logical to skip update for 
invisible windows
-                                */
-                               continue;
-                       }
+               GHOST_TWindowState state = GHOST_GetWindowState(win->ghostwin);
+
+               if (state == GHOST_kWindowStateMinimized) {
+                       /* do not update minimized windows, gives issues on 
Intel (see T33223)
+                        * and AMD (see T50856). it seems logical to skip 
update for invisible
+                        * window anyway.
+                        */
+                       continue;
                }
 #endif
                if (win->drawmethod != U.wmdrawmethod) {

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to