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:
authorLukas Stockner <lukas.stockner@freenet.de>2017-05-04 00:30:58 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2017-05-04 15:19:50 +0300
commit954f201b3e1eab7bda71d318f895e81911c8189b (patch)
treea346f70489511a6043491094fd8a348c2cf075b2 /source/blender/makesdna
parenta89a260634149aba9458043a98170be216f3657e (diff)
Cycles Denoising: Move denoising properties to the Cycles addon and improve the UI
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index c1e8e8f520f..c2711c465e1 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -227,11 +227,6 @@ typedef struct SceneRenderLayer {
int passflag; /* pass_xor has to be after passflag */
int pass_xor;
- int denoising_flag;
- int denoising_radius;
- float denoising_weighting;
- float denoising_feature_strength;
-
int samples;
float pass_alpha_threshold;
@@ -257,19 +252,6 @@ typedef struct SceneRenderLayer {
#define SCE_LAY_ZMASK 0x40000
#define SCE_LAY_NEG_ZMASK 0x80000
-typedef enum SceneDenoisingFlag {
- SCE_DENOISING_USE = (1 << 0),
- SCE_DENOISING_PASS_DIFFDIR = (1 << 2),
- SCE_DENOISING_PASS_DIFFIND = (1 << 3),
- SCE_DENOISING_PASS_GLOSSDIR = (1 << 4),
- SCE_DENOISING_PASS_GLOSSIND = (1 << 5),
- SCE_DENOISING_PASS_TRANSDIR = (1 << 6),
- SCE_DENOISING_PASS_TRANSIND = (1 << 7),
- SCE_DENOISING_PASS_SUBDIR = (1 << 8),
- SCE_DENOISING_PASS_SUBIND = (1 << 9),
- SCE_DENOISING_RELATIVE_PCA = (1 << 13),
-} SceneDenoisingFlag;
-
/* srl->passflag */
typedef enum ScenePassType {
SCE_PASS_COMBINED = (1 << 0),