[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52796] trunk/blender/intern/ghost/intern/ GHOST_WindowWin32.cpp: Disable multisamples on windows for intel cards

Sergey Sharybin sergey.vfx at gmail.com
Thu Dec 6 17:18:37 CET 2012


Revision: 52796
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=52796
Author:   nazgul
Date:     2012-12-06 16:18:35 +0000 (Thu, 06 Dec 2012)
Log Message:
-----------
Disable multisamples on windows for intel cards

This doesn't work nice currently and there's no simple workaround for this,
it'll require lots of statistics about cards and some further investigation
on supported combination of draw methods and multisamples supports.

For the release better be more stable and do not deliver dangerous option.

Modified Paths:
--------------
    trunk/blender/intern/ghost/intern/GHOST_WindowWin32.cpp

Modified: trunk/blender/intern/ghost/intern/GHOST_WindowWin32.cpp
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_WindowWin32.cpp	2012-12-06 09:13:57 UTC (rev 52795)
+++ trunk/blender/intern/ghost/intern/GHOST_WindowWin32.cpp	2012-12-06 16:18:35 UTC (rev 52796)
@@ -868,7 +868,7 @@
 				}
 
 				// Attempt to enable multisample
-				if (m_multisample && WGL_ARB_multisample && !m_multisampleEnabled)
+				if (m_multisample && WGL_ARB_multisample && !m_multisampleEnabled && !is_crappy_intel_card())
 				{
 					success = initMultisample(preferredFormat);
 




More information about the Bf-blender-cvs mailing list