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:
authorClément Foucault <foucault.clem@gmail.com>2021-01-27 19:09:35 +0300
committerClément Foucault <foucault.clem@gmail.com>2021-01-27 19:09:35 +0300
commite1f2db669c0f1a5f40cc87d4cc6b2bed073d16ae (patch)
tree2e805d989c42c258e47f1a024cbea7ed893fb304 /release
parenta6ca6f5af7a48aacee7c7c7c78079afaf3c8cbdf (diff)
EEVEE: Depth Of Field: Add high quality slight defocus option
This option is needed to avoid bumping the scene samples really high to mitigate the noise and flickering introduced by slight defocus areas.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_render.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_render.py b/release/scripts/startup/bl_ui/properties_render.py
index 2ea4c480a88..18d100e29f5 100644
--- a/release/scripts/startup/bl_ui/properties_render.py
+++ b/release/scripts/startup/bl_ui/properties_render.py
@@ -201,6 +201,7 @@ class RENDER_PT_eevee_depth_of_field(RenderButtonsPanel, Panel):
col.prop(props, "bokeh_threshold")
col.prop(props, "bokeh_neighbor_max")
col.prop(props, "bokeh_denoise_fac")
+ col.prop(props, "use_bokeh_high_quality_slight_defocus")
class RENDER_PT_eevee_bloom(RenderButtonsPanel, Panel):