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:
authorRobert Holcomb <bob_holcomb@hotmail.com>2010-03-16 01:36:39 +0300
committerRobert Holcomb <bob_holcomb@hotmail.com>2010-03-16 01:36:39 +0300
commitebd63787e6ad1889319442558e8f7329ca7a768d (patch)
tree752115084879931fdee7fe6167f018dd8dac6ef4 /source/blender/editors/space_node
parentc12cfa37753e440aa585c2044dc433a46e494e59 (diff)
added different sampling methods in rotate node
fixed bug in difference matte node that prevented using a solid color for second input -also clairified some variable names to be more meaningful
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/drawnode.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c
index 9f7b01b1cd0..88cb9f6e81a 100644
--- a/source/blender/editors/space_node/drawnode.c
+++ b/source/blender/editors/space_node/drawnode.c
@@ -921,6 +921,11 @@ static void node_composit_buts_scale(uiLayout *layout, bContext *C, PointerRNA *
uiItemR(layout, "", 0, ptr, "space", 0);
}
+static void node_composit_buts_rotate(uiLayout *layout, bContext *C, PointerRNA *ptr)
+{
+ uiItemR(layout, "", 0, ptr, "filter", 0);
+}
+
static void node_composit_buts_invert(uiLayout *layout, bContext *C, PointerRNA *ptr)
{
uiLayout *col;
@@ -1098,6 +1103,9 @@ static void node_composit_set_butfunc(bNodeType *ntype)
case CMP_NODE_SCALE:
ntype->uifunc= node_composit_buts_scale;
break;
+ case CMP_NODE_ROTATE:
+ ntype->uifunc=node_composit_buts_rotate;
+ break;
case CMP_NODE_CHANNEL_MATTE:
ntype->uifunc= node_composit_buts_channel_matte;
break;