[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39855] branches/cycles/source/blender/ makesrna/intern/rna_access.c: Cycles: revert fix for integrator preset refresh, it causes continuous

Brecht Van Lommel brechtvanlommel at pandora.be
Fri Sep 2 00:53:11 CEST 2011


Revision: 39855
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39855
Author:   blendix
Date:     2011-09-01 22:53:11 +0000 (Thu, 01 Sep 2011)
Log Message:
-----------
Cycles: revert fix for integrator preset refresh, it causes continuous
redraw leading to high cpu usage, need to find better solution.

Modified Paths:
--------------
    branches/cycles/source/blender/makesrna/intern/rna_access.c

Modified: branches/cycles/source/blender/makesrna/intern/rna_access.c
===================================================================
--- branches/cycles/source/blender/makesrna/intern/rna_access.c	2011-09-01 22:40:52 UTC (rev 39854)
+++ branches/cycles/source/blender/makesrna/intern/rna_access.c	2011-09-01 22:53:11 UTC (rev 39855)
@@ -1378,7 +1378,7 @@
  * but this isnt likely to be a performance problem. */
 int RNA_property_update_check(PropertyRNA *prop)
 {
-	return ((prop->magic != RNA_MAGIC) || (prop->flag & PROP_IDPROPERTY)|| prop->update || prop->noteflag);
+	return ((prop->magic != RNA_MAGIC) || prop->update || prop->noteflag);
 }
 
 void RNA_property_update(bContext *C, PointerRNA *ptr, PropertyRNA *prop)




More information about the Bf-blender-cvs mailing list