Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-07-03 20:23:15 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-07-03 20:23:15 +0400
commit9ac9040cfdea0ac30aa4e6f4e9adac0567f7e934 (patch)
tree230a663e6214cd5ad4d768acf9cb48952c109fad /source/blender/compositor/operations/COM_MovieClipOperation.h
parentf56f492c5a6523881a09f81667bec9aa56f20477 (diff)
Tomato: skip cache for Movieclip input node only when rendering
Diffstat (limited to 'source/blender/compositor/operations/COM_MovieClipOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_MovieClipOperation.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/compositor/operations/COM_MovieClipOperation.h b/source/blender/compositor/operations/COM_MovieClipOperation.h
index 2e824009ab6..50d79213428 100644
--- a/source/blender/compositor/operations/COM_MovieClipOperation.h
+++ b/source/blender/compositor/operations/COM_MovieClipOperation.h
@@ -43,6 +43,7 @@ protected:
int m_movieClipheight;
int m_movieClipwidth;
int m_framenumber;
+ bool m_cacheFrame;
/**
* Determine the output resolution. The resolution is retrieved from the Renderer
@@ -56,6 +57,7 @@ public:
void deinitExecution();
void setMovieClip(MovieClip *image) { this->m_movieClip = image; }
void setMovieClipUser(MovieClipUser *imageuser) { this->m_movieClipUser = imageuser; }
+ void setCacheFrame(bool value) { this->m_cacheFrame = value; }
void setFramenumber(int framenumber) { this->m_framenumber = framenumber; }
void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer * inputBuffers[]);