[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51006] trunk/blender/source/blender/ compositor/operations/COM_MapUVOperation.cpp: * fix for regression test [ compo_map_uv.blend]

Jeroen Bakker j.bakker at atmind.nl
Tue Oct 2 13:37:16 CEST 2012


Revision: 51006
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=51006
Author:   jbakker
Date:     2012-10-02 11:37:15 +0000 (Tue, 02 Oct 2012)
Log Message:
-----------
 * fix for regression test [compo_map_uv.blend]

the wrapping was resized to fit the uv map. this step was wrong and has
been deleted.

Modified Paths:
--------------
    trunk/blender/source/blender/compositor/operations/COM_MapUVOperation.cpp

Modified: trunk/blender/source/blender/compositor/operations/COM_MapUVOperation.cpp
===================================================================
--- trunk/blender/source/blender/compositor/operations/COM_MapUVOperation.cpp	2012-10-02 10:08:57 UTC (rev 51005)
+++ trunk/blender/source/blender/compositor/operations/COM_MapUVOperation.cpp	2012-10-02 11:37:15 UTC (rev 51006)
@@ -24,7 +24,7 @@
 
 MapUVOperation::MapUVOperation() : NodeOperation()
 {
-	this->addInputSocket(COM_DT_COLOR);
+	this->addInputSocket(COM_DT_COLOR, COM_SC_NO_RESIZE);
 	this->addInputSocket(COM_DT_VECTOR);
 	this->addOutputSocket(COM_DT_COLOR);
 	this->m_alpha = 0.0f;




More information about the Bf-blender-cvs mailing list