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);
 

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to