[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [46209] branches/tile/source/blender/ compositor/operations/COM_ImageOperation.cpp: TileBranch

Jeroen Bakker j.bakker at atmind.nl
Wed May 2 21:21:30 CEST 2012


Revision: 46209
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=46209
Author:   jbakker
Date:     2012-05-02 19:21:30 +0000 (Wed, 02 May 2012)
Log Message:
-----------
TileBranch
 * Fixed [#31243] Image sequence does not work
issue was that an incorrect frame was used to determine the resolution of the sequence
defaulted to 0 by 0 pixels

Jeroen & Monique
 - At Mind - 

Modified Paths:
--------------
    branches/tile/source/blender/compositor/operations/COM_ImageOperation.cpp

Modified: branches/tile/source/blender/compositor/operations/COM_ImageOperation.cpp
===================================================================
--- branches/tile/source/blender/compositor/operations/COM_ImageOperation.cpp	2012-05-02 18:39:59 UTC (rev 46208)
+++ branches/tile/source/blender/compositor/operations/COM_ImageOperation.cpp	2012-05-02 19:21:30 UTC (rev 46209)
@@ -90,7 +90,7 @@
 }
 
 void BaseImageOperation::determineResolution(unsigned int resolution[], unsigned int preferredResolution[]) {
-	BKE_image_user_calc_frame(this->imageUser, 0, 0);
+	BKE_image_user_calc_frame(this->imageUser, this->framenumber, 0);
 	ImBuf *stackbuf= getImBuf();
 	if (stackbuf) {
 		resolution[0] = stackbuf->x;




More information about the Bf-blender-cvs mailing list