From b1e382178c0e0057d53acb95c7e1de19aa5af337 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sun, 21 Jul 2019 17:38:20 +0200 Subject: [PATCH] Disable high-quality voxel cone tracing by default This makes GIProbe significantly faster out of the box, at the cost of worse-looking GIProbe reflections. This closes #30727. --- doc/classes/ProjectSettings.xml | 2 +- drivers/gles3/rasterizer_scene_gles3.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/classes/ProjectSettings.xml b/doc/classes/ProjectSettings.xml index 7ab29e67ae2..2d6ab4f72cc 100644 --- a/doc/classes/ProjectSettings.xml +++ b/doc/classes/ProjectSettings.xml @@ -825,7 +825,7 @@ Weight subsurface scattering samples. Helps to avoid reading samples from unrelated parts of the screen. - + Use high-quality voxel cone tracing. This results in better-looking reflections, but is much more expensive on the GPU. diff --git a/drivers/gles3/rasterizer_scene_gles3.cpp b/drivers/gles3/rasterizer_scene_gles3.cpp index 812e3711c5a..d710b0959fb 100644 --- a/drivers/gles3/rasterizer_scene_gles3.cpp +++ b/drivers/gles3/rasterizer_scene_gles3.cpp @@ -5296,7 +5296,7 @@ void RasterizerSceneGLES3::initialize() { GLOBAL_DEF("rendering/quality/subsurface_scattering/follow_surface", false); GLOBAL_DEF("rendering/quality/subsurface_scattering/weight_samples", true); - GLOBAL_DEF("rendering/quality/voxel_cone_tracing/high_quality", true); + GLOBAL_DEF("rendering/quality/voxel_cone_tracing/high_quality", false); } exposure_shrink_size = 243;