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>2017-09-01 19:39:39 +0300
committerClément Foucault <foucault.clem@gmail.com>2017-09-10 04:09:45 +0300
commit32e96448b9d08b7975f6afd73b2569a6b81a125e (patch)
tree7d1ab1a6b26e706f02083883708fa10af7c73c4b /source/blender/makesrna/intern/rna_scene.c
parente2603a6e821936e9204cba224961beac77b059f4 (diff)
Eevee: Add Variance Shadow Mapping
This is an alternative to ESM. It does not suffer the same bleeding artifacts.
Diffstat (limited to 'source/blender/makesrna/intern/rna_scene.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 3e744923d45..f763f2bf454 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -6210,8 +6210,7 @@ static void rna_def_scene_layer_engine_settings_eevee(BlenderRNA *brna)
/* Keep in sync with eevee_private.h */
static EnumPropertyItem eevee_shadow_method_items[] = {
{1, "ESM", 0, "ESM", "Exponential Shadow Mapping"},
- /* TODO */
- // {2, "VSM", 0, "VSM", "Variance Shadow Mapping"},
+ {2, "VSM", 0, "VSM", "Variance Shadow Mapping"},
{0, NULL, 0, NULL, NULL}
};