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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-27 14:20:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-27 14:20:29 +0300
commitd1f7ae29a20ab07626cd45d38f6e3be60eaa3f15 (patch)
tree8e3502b47b5acf1fd5b6a7296eeeea4d4322c3b6 /source/blender/makesdna/DNA_light_types.h
parente097e0c8338bd3f96a1a84cf9c3ba0c0635caca6 (diff)
Cleanup: use "_pad" prefix for pad vars
Diffstat (limited to 'source/blender/makesdna/DNA_light_types.h')
-rw-r--r--source/blender/makesdna/DNA_light_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_light_types.h b/source/blender/makesdna/DNA_light_types.h
index b2bbb56c12c..ec913aa2b48 100644
--- a/source/blender/makesdna/DNA_light_types.h
+++ b/source/blender/makesdna/DNA_light_types.h
@@ -52,7 +52,8 @@ typedef struct Light {
/** Quad1 and Quad2 attenuation. */
float att1, att2;
- float coeff_const, coeff_lin, coeff_quad, coeff_pad;
+ float coeff_const, coeff_lin, coeff_quad;
+ char _pad0[4];
struct CurveMapping *curfalloff;
short falloff_type;
char _pad2[2];