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-03-11 21:24:03 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-11 21:24:03 +0400
commit178c2c32f2b39e8d797ca4e4fed3fb9283e3e210 (patch)
tree6a2feea9fbf9e3ccdf32b548db9b3dd2570bc716 /source/blender/blenlib/BLI_callbacks.h
parente13e78495bea15cc2a5941dff51b2a958081bba6 (diff)
[#30503] Callback for render job completion
from Jason van Gumster (thefallenweeble) adds render_complete and render_cancel callbacks to bpy.app.handlers
Diffstat (limited to 'source/blender/blenlib/BLI_callbacks.h')
-rw-r--r--source/blender/blenlib/BLI_callbacks.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_callbacks.h b/source/blender/blenlib/BLI_callbacks.h
index f4f92a0cbee..b32a1e272c8 100644
--- a/source/blender/blenlib/BLI_callbacks.h
+++ b/source/blender/blenlib/BLI_callbacks.h
@@ -42,6 +42,8 @@ typedef enum {
BLI_CB_EVT_RENDER_PRE,
BLI_CB_EVT_RENDER_POST,
BLI_CB_EVT_RENDER_STATS,
+ BLI_CB_EVT_RENDER_COMPLETE,
+ BLI_CB_EVT_RENDER_CANCEL,
BLI_CB_EVT_LOAD_PRE,
BLI_CB_EVT_LOAD_POST,
BLI_CB_EVT_SAVE_PRE,