From f0159d1d48a141483f61b1ccc262f99016b63570 Mon Sep 17 00:00:00 2001 From: lazydodo Date: Thu, 1 Sep 2016 14:00:20 -0600 Subject: Fix T49215 --- intern/ghost/intern/GHOST_ContextWGL.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'intern/ghost') diff --git a/intern/ghost/intern/GHOST_ContextWGL.cpp b/intern/ghost/intern/GHOST_ContextWGL.cpp index abce3ea6588..64ee692797b 100644 --- a/intern/ghost/intern/GHOST_ContextWGL.cpp +++ b/intern/ghost/intern/GHOST_ContextWGL.cpp @@ -183,6 +183,7 @@ static int weight_pixel_format(PIXELFORMATDESCRIPTOR &pfd, PIXELFORMATDESCRIPTOR !(pfd.dwFlags & PFD_DOUBLEBUFFER) || /* Blender _needs_ this */ !(pfd.iPixelType == PFD_TYPE_RGBA) || (pfd.cDepthBits < 16) || + (pfd.cColorBits > 32) || /* 64 bit formats disable aero */ (pfd.dwFlags & PFD_GENERIC_FORMAT)) /* no software renderers */ { return 0; -- cgit v1.2.3