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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-02-23 16:32:28 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-02-23 16:32:57 +0300
commit509953a9db61dc298eae3800e381254bbc80fe06 (patch)
treea94c5664aedb29a2d505095b172ad27a7168e041 /source/blender/makesrna
parent6ac0d357d68d35dc24be9c77fc48abfe20fb3657 (diff)
Remove unused "Free Unused" option from compositor
It was basically doing nothing, for ages.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index e0f3708b338..7505dc28210 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -5617,12 +5617,6 @@ static void rna_def_scene_render_data(BlenderRNA *brna)
"Free all image textures from memory after render, to save memory before compositing");
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
- prop = RNA_def_property(srna, "use_free_unused_nodes", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "scemode", R_COMP_FREE);
- RNA_def_property_ui_text(prop, "Free Unused Nodes",
- "Free Nodes that are not used while compositing, to save memory");
- RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
-
prop = RNA_def_property(srna, "use_save_buffers", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "scemode", R_EXR_TILE_FILE);
RNA_def_property_boolean_funcs(prop, "rna_RenderSettings_save_buffers_get", NULL);