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
path: root/source
diff options
context:
space:
mode:
authorLukas Stockner <lukas.stockner@freenet.de>2017-02-17 05:08:43 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2017-03-24 02:13:43 +0300
commita98081c92915a6bdc7f2eda04180a72147d06f75 (patch)
tree3020811be37ac317827052c83a6cae5b0c89fa0f /source
parentf70010fd40060b8c3be38e2831356bbb36ee7219 (diff)
Cycles Denoising: Remove obsolete Keep Denoising Data option
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h1
-rw-r--r--source/blender/makesrna/intern/rna_scene.c5
2 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 0582dc72d8c..2e9f53c6109 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -257,7 +257,6 @@ typedef struct SceneRenderLayer {
typedef enum SceneDenoiseFlag {
SCE_DENOISE_RESULT = (1 << 0),
- SCE_DENOISE_STORE_PASSES = (1 << 1),
SCE_DENOISE_PASS_DIFFDIR = (1 << 2),
SCE_DENOISE_PASS_DIFFIND = (1 << 3),
SCE_DENOISE_PASS_GLOSSDIR = (1 << 4),
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 8303bfb5419..5f578ad2c0b 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -5095,11 +5095,6 @@ static void rna_def_scene_render_layer(BlenderRNA *brna)
RNA_def_property_ui_text(prop, "Denoise Render Result", "Denoise the rendered image during rendering");
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
- prop = RNA_def_property(srna, "keep_denoise_data", PROP_BOOLEAN, PROP_NONE);
- RNA_def_property_boolean_sdna(prop, NULL, "denoiseflag", SCE_DENOISE_STORE_PASSES);
- RNA_def_property_ui_text(prop, "Keep denoising data", "Store the denoising data so that the image can be denoised later");
- RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, NULL);
-
prop = RNA_def_property(srna, "denoise_diffuse_direct", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "denoiseflag", SCE_DENOISE_PASS_DIFFDIR);
RNA_def_property_ui_text(prop, "Diffuse Direct", "Denoise the direct diffuse lighting");