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-03-12 08:59:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-12 09:44:35 +0300
commit873f8b13eceb19ecf439e678b4b2e9de86300c14 (patch)
treec54bb366b8925e10a5e62f695e19d010f55356d7 /source/blender/blenkernel/intern/light.c
parentd8daeeb9300953ee175e06c8fc1aa3a44a72da20 (diff)
Cleanup: BLI_utildefines struct macros
Use the term "AFTER" instead of "OFS" since it wasn't obvious these macros operate on everything after the struct member passed. Avoid casting to non-const types when only reading.
Diffstat (limited to 'source/blender/blenkernel/intern/light.c')
-rw-r--r--source/blender/blenkernel/intern/light.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/light.c b/source/blender/blenkernel/intern/light.c
index b1ec5ba6954..ae68182c55a 100644
--- a/source/blender/blenkernel/intern/light.c
+++ b/source/blender/blenkernel/intern/light.c
@@ -46,7 +46,7 @@
void BKE_light_init(Light *la)
{
- BLI_assert(MEMCMP_STRUCT_OFS_IS_ZERO(la, id));
+ BLI_assert(MEMCMP_STRUCT_AFTER_IS_ZERO(la, id));
la->r = la->g = la->b = la->k = 1.0f;
la->energy = 10.0f;