[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [59977] branches/soc-2013-dingto/intern/ cycles: Fix for last commit, forgot to rename the shader in 2 locations.

Thomas Dinges blender at dingto.org
Tue Sep 10 02:36:15 CEST 2013


Revision: 59977
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=59977
Author:   dingto
Date:     2013-09-10 00:36:14 +0000 (Tue, 10 Sep 2013)
Log Message:
-----------
Fix for last commit, forgot to rename the shader in 2 locations. :/ 

Modified Paths:
--------------
    branches/soc-2013-dingto/intern/cycles/kernel/shaders/CMakeLists.txt
    branches/soc-2013-dingto/intern/cycles/render/nodes.cpp

Modified: branches/soc-2013-dingto/intern/cycles/kernel/shaders/CMakeLists.txt
===================================================================
--- branches/soc-2013-dingto/intern/cycles/kernel/shaders/CMakeLists.txt	2013-09-10 00:27:21 UTC (rev 59976)
+++ branches/soc-2013-dingto/intern/cycles/kernel/shaders/CMakeLists.txt	2013-09-10 00:36:14 UTC (rev 59977)
@@ -29,11 +29,11 @@
 	node_glossy_bsdf.osl
 	node_gradient_texture.osl
 	node_hair_info.osl
-	node_henyey_greenstein_volume.osl
 	node_holdout.osl
 	node_hsv.osl
 	node_image_texture.osl
 	node_invert.osl
+	node_isotropic_volume.osl
 	node_layer_weight.osl
 	node_light_falloff.osl
 	node_light_path.osl

Modified: branches/soc-2013-dingto/intern/cycles/render/nodes.cpp
===================================================================
--- branches/soc-2013-dingto/intern/cycles/render/nodes.cpp	2013-09-10 00:27:21 UTC (rev 59976)
+++ branches/soc-2013-dingto/intern/cycles/render/nodes.cpp	2013-09-10 00:36:14 UTC (rev 59977)
@@ -1949,7 +1949,7 @@
 
 void IsotropicVolumeNode::compile(OSLCompiler& compiler)
 {
-	compiler.add(this, "node_henyey_greenstein_volume");
+	compiler.add(this, "node_isotropic_volume");
 }
 
 /* Geometry */




More information about the Bf-blender-cvs mailing list