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:
authorCampbell Barton <ideasman42@gmail.com>2012-07-27 13:32:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-07-27 13:32:47 +0400
commitb10a35a9a9128531347e60be530631b39386dcb2 (patch)
treebea13c8ae1f9557b4dc359eb173d0326440884dc /source/blender/compositor/operations/COM_MaskOperation.h
parent93c29aaeb1b0021bac6cb09da1f0cfc7ca90809e (diff)
motion blur for mask node:
TODO - add shutter speed option - add blur option
Diffstat (limited to 'source/blender/compositor/operations/COM_MaskOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_MaskOperation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_MaskOperation.h b/source/blender/compositor/operations/COM_MaskOperation.h
index 59c84bdbb7b..a8c23b3bca1 100644
--- a/source/blender/compositor/operations/COM_MaskOperation.h
+++ b/source/blender/compositor/operations/COM_MaskOperation.h
@@ -64,7 +64,8 @@ protected:
ListBase m_maskLayers;
#else /* USE_RASKTER */
- struct MaskRasterHandle *m_rasterMaskHandle;
+ struct MaskRasterHandle *m_rasterMaskHandles[32];
+ unsigned int m_rasterMaskHandleTot;
#endif /* USE_RASKTER */
/**
@@ -93,6 +94,7 @@ public:
void setFramenumber(int framenumber) { this->m_framenumber = framenumber; }
void setSmooth(bool smooth) { this->m_do_smooth = smooth; }
void setFeather(bool feather) { this->m_do_feather = feather; }
+ void setMotionBlurSamples(int samples) { this->m_rasterMaskHandleTot = max(1, samples); }
#ifdef USE_RASKTER
void *initializeTileData(rcti *rect);