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>2018-11-20 21:25:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-20 21:25:52 +0300
commit5aa728ec7eb8833daeb602ed4e8ccffff58880f2 (patch)
tree17812d772c38fee090cd5dbebdf489f7bc97a86d /source/blender/blenkernel/intern/studiolight.c
parentec908beab321853e7d018d1d0b1450f4aef89a51 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/blenkernel/intern/studiolight.c')
-rw-r--r--source/blender/blenkernel/intern/studiolight.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/studiolight.c b/source/blender/blenkernel/intern/studiolight.c
index f3d0c8c52f4..f949fcaea07 100644
--- a/source/blender/blenkernel/intern/studiolight.c
+++ b/source/blender/blenkernel/intern/studiolight.c
@@ -637,7 +637,7 @@ static void studiolight_spherical_harmonics_apply_band_factors(StudioLight *sl,
int index = 0, dst_idx = 0;
for (int band = 0; band < STUDIOLIGHT_SH_BANDS; band++) {
- for (int m = 0; m < SQUARE(band+1) - SQUARE(band); m++) {
+ for (int m = 0; m < SQUARE(band + 1) - SQUARE(band); m++) {
/* Skip L3 */
if (band != 3) {
mul_v3_v3fl(sl->spherical_harmonics_coefs[dst_idx++], sh[index], sl_sh_band_factors[band]);