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:
authorJeroen Bakker <j.bakker@atmind.nl>2012-05-16 12:36:09 +0400
committerJeroen Bakker <j.bakker@atmind.nl>2012-05-16 12:36:09 +0400
commitf829d9a0c83a5f17b25e140410fc0ff17df2a180 (patch)
tree55d821426559e9802c00de899b84c2c09be4ab84 /source/blender/editors/space_node
parent61fa44b6fc0eebe9c9235bbd4c2df6f4f89f0ebe (diff)
TileBranch
* remove unused test-nodes
Diffstat (limited to 'source/blender/editors/space_node')
-rw-r--r--source/blender/editors/space_node/drawnode.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c
index ed5043ca8cc..906989336c8 100644
--- a/source/blender/editors/space_node/drawnode.c
+++ b/source/blender/editors/space_node/drawnode.c
@@ -1702,11 +1702,6 @@ static void node_composit_buts_view_levels(uiLayout *layout, bContext *UNUSED(C)
uiItemR(layout, ptr, "channel", UI_ITEM_R_EXPAND, NULL, ICON_NONE);
}
-static void node_composit_buts_sampler(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
-{
- uiItemR(layout, ptr, "filter_type", 0, "", ICON_NONE);
-}
-
static void node_composit_buts_colorcorrection(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
{
uiLayout *row;
@@ -1914,13 +1909,6 @@ static void node_composit_buts_moviedistortion(uiLayout *layout, bContext *C, Po
uiItemR(layout, ptr, "distortion_type", 0, "", 0);
}
-static void node_composit_buts_dilateerode2(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
-{
- uiItemR(layout, ptr, "distance", UI_ITEM_R_SLIDER, NULL, ICON_NONE);
- uiItemR(layout, ptr, "inset", UI_ITEM_R_SLIDER, NULL, ICON_NONE);
- uiItemR(layout, ptr, "check", UI_ITEM_R_SLIDER, NULL, ICON_NONE);
-}
-
static void node_composit_buts_switch(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
{
uiItemR(layout, ptr, "check", 0, NULL, ICON_NONE);
@@ -2256,9 +2244,6 @@ static void node_composit_set_butfunc(bNodeType *ntype)
case CMP_NODE_MOVIEDISTORTION:
ntype->uifunc= node_composit_buts_moviedistortion;
break;
- case CMP_NODE_DILATEERODE2:
- ntype->uifunc= node_composit_buts_dilateerode2;
- break;
case CMP_NODE_SWITCH:
ntype->uifunc= node_composit_buts_switch;
break;
@@ -2273,9 +2258,6 @@ static void node_composit_set_butfunc(bNodeType *ntype)
case CMP_NODE_BOKEHIMAGE:
ntype->uifunc= node_composit_buts_bokehimage;
break;
- case CMP_NODE_SAMPLER:
- ntype->uifunc= node_composit_buts_sampler;
- break;
case CMP_NODE_VIEWER:
ntype->uifunc = NULL;
ntype->uifuncbut= node_composit_buts_viewer_but;