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-03-29 08:52:47 +0300
committerLukas Stockner <lukas.stockner@freenet.de>2017-03-29 08:52:47 +0300
commit96ec1641c991c14d228fba4b853cc66bef50fe4c (patch)
tree3798f52109d03d88b41fed5ac96b1c88b5cb0755 /source/blender/blenloader
parent08fb4c627eb30edd4779c5b84302b9b7868f6238 (diff)
Cycles Denoising: Remove cross- and gradient-denoising option, replace PCA threshold with a checkbox
Cross denoising is significantly slower, needs more memory and didn't really produce better results in my tests. Gradient denoising sometimes helped, but tends to produce artifacts and was broken for a few weeks already anyways. The extremely confusing "Filter strength" (negative values used to map to an absolute threshold of 10^(2*-strength), positive ones to a relative threshold of 10^(2*strength), 0 to relative 1e-3) was replaced by a checkbox that selects between an absolute threshold of 1 and a relative threshold of 1e-3. Eventually, I'd like to completely remove the option, but it's not clear yet which one is the better approach.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_270.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_270.c b/source/blender/blenloader/intern/versioning_270.c
index 902cba6ad4e..aba792879ff 100644
--- a/source/blender/blenloader/intern/versioning_270.c
+++ b/source/blender/blenloader/intern/versioning_270.c
@@ -1415,7 +1415,6 @@ void blo_do_versions_270(FileData *fd, Library *UNUSED(lib), Main *main)
rl->denoising_flag = SCE_DENOISING_PASS_DIFFDIR|SCE_DENOISING_PASS_GLOSSDIR|SCE_DENOISING_PASS_TRANSDIR|SCE_DENOISING_PASS_SUBDIR|
SCE_DENOISING_PASS_DIFFIND|SCE_DENOISING_PASS_GLOSSIND|SCE_DENOISING_PASS_TRANSIND|SCE_DENOISING_PASS_SUBIND;
rl->denoising_radius = 8;
- rl->denoising_strength = 0.0f;
}
}
}