[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [13498] trunk/blender/source/blender/ render/intern/source/zbuf.c: Stupid error in commit of last weekend for zmasking:

Ton Roosendaal ton at blender.org
Thu Jan 31 15:14:03 CET 2008


Revision: 13498
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=13498
Author:   ton
Date:     2008-01-31 15:14:03 +0100 (Thu, 31 Jan 2008)

Log Message:
-----------
Stupid error in commit of last weekend for zmasking:
You could not mask out anymore using the 'ctrl-click layer' without
having zmask on. 

Modified Paths:
--------------
    trunk/blender/source/blender/render/intern/source/zbuf.c

Modified: trunk/blender/source/blender/render/intern/source/zbuf.c
===================================================================
--- trunk/blender/source/blender/render/intern/source/zbuf.c	2008-01-31 12:29:57 UTC (rev 13497)
+++ trunk/blender/source/blender/render/intern/source/zbuf.c	2008-01-31 14:14:03 UTC (rev 13498)
@@ -2072,7 +2072,7 @@
 					continue;
 			}
 			else {
-				if(!all_z && !(obr->lay & lay))
+				if(!all_z && !(obr->lay & (lay|lay_zmask)))
 					continue;
 			}
 			





More information about the Bf-blender-cvs mailing list