From 557b893dfd0fa2380ee159bb4fe7a28f09187036 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 7 Mar 2013 17:47:30 +0000 Subject: Border for compositor viewer node feature This adds border option to compositor, which affects on a backdrop and viewer nodes, which is useful for faster previews and tweaks. Final compositing still happens for the whole frame, but if it'll be needed it's not so difficult to support it as well. To use border there's Ctrl-B shortcut in the compositor editor, which i used to define region you want to restrict compositing to. There's also "Viewer Border" option in the N-panel in case you'll want to disable border compositing. Some areas could be cleaned a bit, like ideally it shall not be viewer image clearing in viewer_border_update RNA callback, but currently it's not so much clear how to make it the same fast as simple memset and glue it somehow to compositor. Will think of nicer solution a bit later. --- release/scripts/startup/bl_ui/space_node.py | 1 + 1 file changed, 1 insertion(+) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_node.py b/release/scripts/startup/bl_ui/space_node.py index 104c1500756..1865b049a03 100644 --- a/release/scripts/startup/bl_ui/space_node.py +++ b/release/scripts/startup/bl_ui/space_node.py @@ -254,6 +254,7 @@ class NODE_PT_quality(bpy.types.Panel): col.prop(tree, "use_opencl") col.prop(tree, "use_groupnode_buffer") col.prop(tree, "two_pass") + col.prop(tree, "use_viewer_border") col.prop(snode, "show_highlight") col.prop(snode, "use_hidden_preview") -- cgit v1.2.3