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>2019-08-22 17:04:25 +0300
committerClément Foucault <foucault.clem@gmail.com>2019-09-05 18:37:50 +0300
commitd8aaf25c23fa10ee121dc4fdd1cafe544bcca355 (patch)
treeb5a16157beac22e4b474c699c1ce25f3d8c5be51 /source/blender/makesdna/DNA_light_types.h
parentca58936f2ff2b14a649722be20d98f8fa35831ff (diff)
Eevee: Shadow map refactor
Reviewed By: brecht Differential Revision: http://developer.blender.org/D5659
Diffstat (limited to 'source/blender/makesdna/DNA_light_types.h')
-rw-r--r--source/blender/makesdna/DNA_light_types.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_light_types.h b/source/blender/makesdna/DNA_light_types.h
index 82cab5d1594..ec83d53da5e 100644
--- a/source/blender/makesdna/DNA_light_types.h
+++ b/source/blender/makesdna/DNA_light_types.h
@@ -58,7 +58,10 @@ typedef struct Light {
char _pad2[2];
float clipsta, clipend;
- float bias, soft, bleedbias, bleedexp;
+ float bias;
+ float soft; /* DEPRECATED kept for compatibility. */
+ float bleedbias; /* DEPRECATED kept for compatibility. */
+ float bleedexp; /* DEPRECATED kept for compatibility. */
short bufsize, samp, buffers, filtertype;
char bufflag, buftype;
@@ -82,7 +85,10 @@ typedef struct Light {
float cascade_fade;
int cascade_count;
- float contact_dist, contact_bias, contact_spread, contact_thickness;
+ float contact_dist;
+ float contact_bias;
+ float contact_spread; /* DEPRECATED kept for compatibility. */
+ float contact_thickness;
float spec_fac, att_dist;