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>2014-12-01 20:27:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-12-01 20:47:39 +0300
commitee010650f61c759a1b5d3279bbdbbc5b8915152b (patch)
treed094145003ee64ccce733dc64f3c29b891447c33 /source/blender/blenlib/BLI_callbacks.h
parent20a177814815e7e3a1a4a4d37e91880ef98aa68a (diff)
Python: add 'render_write' callback
This is useful for addons which intend to write data next to the rendered image/movie, but not for preview renders.
Diffstat (limited to 'source/blender/blenlib/BLI_callbacks.h')
-rw-r--r--source/blender/blenlib/BLI_callbacks.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_callbacks.h b/source/blender/blenlib/BLI_callbacks.h
index 2f963cfac51..7cf524749c2 100644
--- a/source/blender/blenlib/BLI_callbacks.h
+++ b/source/blender/blenlib/BLI_callbacks.h
@@ -41,6 +41,7 @@ typedef enum {
BLI_CB_EVT_FRAME_CHANGE_POST,
BLI_CB_EVT_RENDER_PRE,
BLI_CB_EVT_RENDER_POST,
+ BLI_CB_EVT_RENDER_WRITE,
BLI_CB_EVT_RENDER_STATS,
BLI_CB_EVT_RENDER_INIT,
BLI_CB_EVT_RENDER_COMPLETE,