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-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/blenkernel/intern/light.c
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/blenkernel/intern/light.c')
-rw-r--r--source/blender/blenkernel/intern/light.c170
1 files changed, 85 insertions, 85 deletions
diff --git a/source/blender/blenkernel/intern/light.c b/source/blender/blenkernel/intern/light.c
index ae68182c55a..f0943bc2749 100644
--- a/source/blender/blenkernel/intern/light.c
+++ b/source/blender/blenkernel/intern/light.c
@@ -46,53 +46,53 @@
void BKE_light_init(Light *la)
{
- BLI_assert(MEMCMP_STRUCT_AFTER_IS_ZERO(la, id));
-
- la->r = la->g = la->b = la->k = 1.0f;
- la->energy = 10.0f;
- la->dist = 25.0f;
- la->spotsize = DEG2RADF(45.0f);
- la->spotblend = 0.15f;
- la->att2 = 1.0f;
- la->mode = LA_SHADOW;
- la->bufsize = 512;
- la->clipsta = 0.5f;
- la->clipend = 40.0f;
- la->bleedexp = 2.5f;
- la->samp = 3;
- la->bias = 1.0f;
- la->soft = 3.0f;
- la->area_size = la->area_sizey = la->area_sizez = 0.25f;
- la->buffers = 1;
- la->preview = NULL;
- la->falloff_type = LA_FALLOFF_INVSQUARE;
- la->coeff_const = 1.0f;
- la->coeff_lin = 0.0f;
- la->coeff_quad = 0.0f;
- la->curfalloff = curvemapping_add(1, 0.0f, 1.0f, 1.0f, 0.0f);
- la->cascade_max_dist = 200.0f;
- la->cascade_count = 4;
- la->cascade_exponent = 0.8f;
- la->cascade_fade = 0.1f;
- la->contact_dist = 0.2f;
- la->contact_bias = 0.03f;
- la->contact_spread = 0.2f;
- la->contact_thickness = 0.2f;
- la->spec_fac = 1.0f;
- la->att_dist = 40.0f;
-
- curvemapping_initialize(la->curfalloff);
+ BLI_assert(MEMCMP_STRUCT_AFTER_IS_ZERO(la, id));
+
+ la->r = la->g = la->b = la->k = 1.0f;
+ la->energy = 10.0f;
+ la->dist = 25.0f;
+ la->spotsize = DEG2RADF(45.0f);
+ la->spotblend = 0.15f;
+ la->att2 = 1.0f;
+ la->mode = LA_SHADOW;
+ la->bufsize = 512;
+ la->clipsta = 0.5f;
+ la->clipend = 40.0f;
+ la->bleedexp = 2.5f;
+ la->samp = 3;
+ la->bias = 1.0f;
+ la->soft = 3.0f;
+ la->area_size = la->area_sizey = la->area_sizez = 0.25f;
+ la->buffers = 1;
+ la->preview = NULL;
+ la->falloff_type = LA_FALLOFF_INVSQUARE;
+ la->coeff_const = 1.0f;
+ la->coeff_lin = 0.0f;
+ la->coeff_quad = 0.0f;
+ la->curfalloff = curvemapping_add(1, 0.0f, 1.0f, 1.0f, 0.0f);
+ la->cascade_max_dist = 200.0f;
+ la->cascade_count = 4;
+ la->cascade_exponent = 0.8f;
+ la->cascade_fade = 0.1f;
+ la->contact_dist = 0.2f;
+ la->contact_bias = 0.03f;
+ la->contact_spread = 0.2f;
+ la->contact_thickness = 0.2f;
+ la->spec_fac = 1.0f;
+ la->att_dist = 40.0f;
+
+ curvemapping_initialize(la->curfalloff);
}
Light *BKE_light_add(Main *bmain, const char *name)
{
- Light *la;
+ Light *la;
- la = BKE_libblock_alloc(bmain, ID_LA, name, 0);
+ la = BKE_libblock_alloc(bmain, ID_LA, name, 0);
- BKE_light_init(la);
+ BKE_light_init(la);
- return la;
+ return la;
}
/**
@@ -105,74 +105,74 @@ Light *BKE_light_add(Main *bmain, const char *name)
*/
void BKE_light_copy_data(Main *bmain, Light *la_dst, const Light *la_src, const int flag)
{
- la_dst->curfalloff = curvemapping_copy(la_src->curfalloff);
-
- if (la_src->nodetree) {
- /* Note: nodetree is *not* in bmain, however this specific case is handled at lower level
- * (see BKE_libblock_copy_ex()). */
- BKE_id_copy_ex(bmain, (ID *)la_src->nodetree, (ID **)&la_dst->nodetree, flag);
- }
-
- if ((flag & LIB_ID_COPY_NO_PREVIEW) == 0) {
- BKE_previewimg_id_copy(&la_dst->id, &la_src->id);
- }
- else {
- la_dst->preview = NULL;
- }
+ la_dst->curfalloff = curvemapping_copy(la_src->curfalloff);
+
+ if (la_src->nodetree) {
+ /* Note: nodetree is *not* in bmain, however this specific case is handled at lower level
+ * (see BKE_libblock_copy_ex()). */
+ BKE_id_copy_ex(bmain, (ID *)la_src->nodetree, (ID **)&la_dst->nodetree, flag);
+ }
+
+ if ((flag & LIB_ID_COPY_NO_PREVIEW) == 0) {
+ BKE_previewimg_id_copy(&la_dst->id, &la_src->id);
+ }
+ else {
+ la_dst->preview = NULL;
+ }
}
Light *BKE_light_copy(Main *bmain, const Light *la)
{
- Light *la_copy;
- BKE_id_copy(bmain, &la->id, (ID **)&la_copy);
- return la_copy;
+ Light *la_copy;
+ BKE_id_copy(bmain, &la->id, (ID **)&la_copy);
+ return la_copy;
}
Light *BKE_light_localize(Light *la)
{
- /* TODO(bastien): Replace with something like:
- *
- * Light *la_copy;
- * BKE_id_copy_ex(bmain, &la->id, (ID **)&la_copy,
- * LIB_ID_COPY_NO_MAIN | LIB_ID_COPY_NO_PREVIEW | LIB_ID_COPY_NO_USER_REFCOUNT,
- * false);
- * return la_copy;
- *
- * NOTE: Only possible once nested node trees are fully converted to that too. */
+ /* TODO(bastien): Replace with something like:
+ *
+ * Light *la_copy;
+ * BKE_id_copy_ex(bmain, &la->id, (ID **)&la_copy,
+ * LIB_ID_COPY_NO_MAIN | LIB_ID_COPY_NO_PREVIEW | LIB_ID_COPY_NO_USER_REFCOUNT,
+ * false);
+ * return la_copy;
+ *
+ * NOTE: Only possible once nested node trees are fully converted to that too. */
- Light *lan = BKE_libblock_copy_for_localize(&la->id);
+ Light *lan = BKE_libblock_copy_for_localize(&la->id);
- lan->curfalloff = curvemapping_copy(la->curfalloff);
+ lan->curfalloff = curvemapping_copy(la->curfalloff);
- if (la->nodetree)
- lan->nodetree = ntreeLocalize(la->nodetree);
+ if (la->nodetree)
+ lan->nodetree = ntreeLocalize(la->nodetree);
- lan->preview = NULL;
+ lan->preview = NULL;
- lan->id.tag |= LIB_TAG_LOCALIZED;
+ lan->id.tag |= LIB_TAG_LOCALIZED;
- return lan;
+ return lan;
}
void BKE_light_make_local(Main *bmain, Light *la, const bool lib_local)
{
- BKE_id_make_local_generic(bmain, &la->id, true, lib_local);
+ BKE_id_make_local_generic(bmain, &la->id, true, lib_local);
}
void BKE_light_free(Light *la)
{
- BKE_animdata_free((ID *)la, false);
+ BKE_animdata_free((ID *)la, false);
- curvemapping_free(la->curfalloff);
+ curvemapping_free(la->curfalloff);
- /* is no lib link block, but light extension */
- if (la->nodetree) {
- ntreeFreeNestedTree(la->nodetree);
- MEM_freeN(la->nodetree);
- la->nodetree = NULL;
- }
+ /* is no lib link block, but light extension */
+ if (la->nodetree) {
+ ntreeFreeNestedTree(la->nodetree);
+ MEM_freeN(la->nodetree);
+ la->nodetree = NULL;
+ }
- BKE_previewimg_free(&la->preview);
- BKE_icon_id_delete(&la->id);
- la->id.icon_id = 0;
+ BKE_previewimg_free(&la->preview);
+ BKE_icon_id_delete(&la->id);
+ la->id.icon_id = 0;
}