Blender Git Commit Log
Git Commits -> Revision 2e0e2cb
Revision 2e0e2cb by Sergey Sharybin (master) January 1, 2013, 16:15 (GMT) |
Highlight currently rendering tiles This commit implements highlight of tiles which are being currently rendered for both Blender Internal and Cycles (and should be possible to use it for other external engines as well). Couple of implementation details: - Added one extra boolean flag to render engine which should be set to truth if render engine wants to highlight tiles. If so, property use_highlight_tiles should be set to True. - Render Part's ready boolena was changed by status enum, which could be NONE, IN_PROGRESS and READY. All render part with IN_PROGRESS status will be highlighted in image editor. - For external engines render part's status is filling in automatically. Initially all render parts has got NONE status, then one external engine acquire render result, corresponding part will change status to IN_PROGRESS. As soon as render result is finished, corresponding render part will change status to FINISHED This should make it easy to highlight tiles for other engines as well. |
Commit Details:
Full Hash: 2e0e2cb17056892cefeefeef9e0fd693084ef71f
SVN Revision: 53486
Parent Commit: b88836a
Lines Changed: +184, -27
9 Modified Paths:
/intern/cycles/blender/blender_session.cpp (+13, -1) (Diff)
/intern/cycles/render/session.cpp (+7, -1) (Diff)
/source/blender/editors/space_image/image_draw.c (+72, -4) (Diff)
/source/blender/makesrna/intern/rna_render.c (+3, -0) (Diff)
/source/blender/render/extern/include/RE_engine.h (+3, -0) (Diff)
/source/blender/render/intern/include/render_types.h (+7, -1) (Diff)
/source/blender/render/intern/source/external_engine.c (+70, -13) (Diff)
/source/blender/render/intern/source/pipeline.c (+8, -6) (Diff)
/source/blender/render/intern/source/render_result.c (+1, -1) (Diff)
/intern/cycles/render/session.cpp (+7, -1) (Diff)
/source/blender/editors/space_image/image_draw.c (+72, -4) (Diff)
/source/blender/makesrna/intern/rna_render.c (+3, -0) (Diff)
/source/blender/render/extern/include/RE_engine.h (+3, -0) (Diff)
/source/blender/render/intern/include/render_types.h (+7, -1) (Diff)
/source/blender/render/intern/source/external_engine.c (+70, -13) (Diff)
/source/blender/render/intern/source/pipeline.c (+8, -6) (Diff)
/source/blender/render/intern/source/render_result.c (+1, -1) (Diff)