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-08-09 17:54:18 +0300
committerClément Foucault <foucault.clem@gmail.com>2017-08-10 16:43:48 +0300
commitd16342e5fd1f51c01bc1f9becc6ec0704d783de8 (patch)
tree3c070ef24e1e7fa3b7dc444e229d45a7b9bcff78 /source/blender/makesdna/DNA_material_types.h
parent98a7f1b3356bd5dd5190150b12f8b00f7fbe7455 (diff)
Eevee: Add Screen Space Refraction.
For the moment the only way to enable this is to: - enable Screen Space REFLECTIONS. - enable Screen Space Refraction in the SSR parameters. - enable Screen Space Refraction in the material tab.
Diffstat (limited to 'source/blender/makesdna/DNA_material_types.h')
-rw-r--r--source/blender/makesdna/DNA_material_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_material_types.h b/source/blender/makesdna/DNA_material_types.h
index 41ad12e63f2..71d1cfc8e70 100644
--- a/source/blender/makesdna/DNA_material_types.h
+++ b/source/blender/makesdna/DNA_material_types.h
@@ -510,7 +510,8 @@ enum {
/* blend_flag */
enum {
- MA_BL_HIDE_BACKSIDE = (1 << 0),
+ MA_BL_HIDE_BACKSIDE = (1 << 0),
+ MA_BL_REFRACTION = (1 << 1),
};
/* blend_shadow */