[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55077] tags/blender-2.66a-release/blender /intern/ghost/intern/GHOST_WindowWin32.cpp: 2.66a:

Thomas Dinges blender at dingto.org
Wed Mar 6 17:38:26 CET 2013


Revision: 55077
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55077
Author:   dingto
Date:     2013-03-06 16:38:26 +0000 (Wed, 06 Mar 2013)
Log Message:
-----------
2.66a:
* Back port r54747 to 2.66a tag to fix Windows compile error. 

Revision Links:
--------------
    http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54747

Modified Paths:
--------------
    tags/blender-2.66a-release/blender/intern/ghost/intern/GHOST_WindowWin32.cpp

Modified: tags/blender-2.66a-release/blender/intern/ghost/intern/GHOST_WindowWin32.cpp
===================================================================
--- tags/blender-2.66a-release/blender/intern/ghost/intern/GHOST_WindowWin32.cpp	2013-03-06 16:32:05 UTC (rev 55076)
+++ tags/blender-2.66a-release/blender/intern/ghost/intern/GHOST_WindowWin32.cpp	2013-03-06 16:38:26 UTC (rev 55077)
@@ -712,7 +712,7 @@
 		WGL_ACCELERATION_ARB, WGL_FULL_ACCELERATION_ARB,
 		WGL_COLOR_BITS_ARB, pfd.cColorBits,
 		WGL_DEPTH_BITS_ARB, pfd.cDepthBits,
-		WGL_ALPHA_BITS_ART, pfd.cAlphaBits,
+		WGL_ALPHA_BITS_ARB, pfd.cAlphaBits,
 		WGL_STENCIL_BITS_ARB, pfd.cStencilBits,
 		WGL_DOUBLE_BUFFER_ARB, GL_TRUE,
 		WGL_SAMPLE_BUFFERS_ARB, GL_TRUE,
@@ -1322,7 +1322,7 @@
 
 	weight += pfd.cColorBits - 8;
 
-	if (pdf.cAlphaBits > 0)
+	if (pfd.cAlphaBits > 0)
 		weight ++;
 
 	/* want swap copy capability -- it matters a lot */




More information about the Bf-blender-cvs mailing list