[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [58055] branches/soc-2013-cycles_mblur/ intern/cycles/render/object.h: Added two new fields to the Object class.

Gavin Howard gavin.d.howard at gmail.com
Sun Jul 7 05:58:34 CEST 2013


Revision: 58055
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=58055
Author:   gdh
Date:     2013-07-07 03:58:34 +0000 (Sun, 07 Jul 2013)
Log Message:
-----------
Added two new fields to the Object class. I was originally going to add 
these to the Mesh class In fact, I did, by mistake in r58053 (blush). 
The new fields are:

 - bool use_deform_mblur: stores whether the object will use deformation 
                          motion blur.
 - uint mblur_steps:      stores the number of export steps for the 
                          object.

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

Modified Paths:
--------------
    branches/soc-2013-cycles_mblur/intern/cycles/render/object.h

Modified: branches/soc-2013-cycles_mblur/intern/cycles/render/object.h
===================================================================
--- branches/soc-2013-cycles_mblur/intern/cycles/render/object.h	2013-07-07 03:49:37 UTC (rev 58054)
+++ branches/soc-2013-cycles_mblur/intern/cycles/render/object.h	2013-07-07 03:58:34 UTC (rev 58055)
@@ -45,8 +45,10 @@
 	int pass_id;
 	vector<ParamValue> attributes;
 	uint visibility;
+	uint mblur_steps;
 	MotionTransform motion;
 	bool use_motion;
+	bool use_deform_mblur;
 	bool use_holdout;
 	bool curverender;
 




More information about the Bf-blender-cvs mailing list