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 02:46:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-27 03:03:16 +0300
commit3051e2f4ae8fd3e72a43dd1e5d40893d0efec500 (patch)
tree6de62ee531c71705a8d86592770d26f8ecb75d1f /source/blender/blenloader/intern/versioning_260.c
parentce104ca89643c4b0e6358fd22a2b056ecd603e62 (diff)
DNA: rename Lamp -> Light
- BKE_lamp -> BKE_light - Main.lamp -> light
Diffstat (limited to 'source/blender/blenloader/intern/versioning_260.c')
-rw-r--r--source/blender/blenloader/intern/versioning_260.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/source/blender/blenloader/intern/versioning_260.c b/source/blender/blenloader/intern/versioning_260.c
index c2edfa70470..86e4fd47479 100644
--- a/source/blender/blenloader/intern/versioning_260.c
+++ b/source/blender/blenloader/intern/versioning_260.c
@@ -822,7 +822,6 @@ void blo_do_versions_260(FileData *fd, Library *UNUSED(lib), Main *bmain)
Scene *sce;
Material *mat;
Tex *tex;
- Lamp *lamp;
World *world;
bNodeTree *ntree;
@@ -841,9 +840,9 @@ void blo_do_versions_260(FileData *fd, Library *UNUSED(lib), Main *bmain)
do_versions_nodetree_socket_use_flags_2_62(tex->nodetree);
}
- for (lamp = bmain->lamp.first; lamp; lamp = lamp->id.next) {
- if (lamp->nodetree)
- do_versions_nodetree_socket_use_flags_2_62(lamp->nodetree);
+ for (Light *la = bmain->light.first; la; la = la->id.next) {
+ if (la->nodetree)
+ do_versions_nodetree_socket_use_flags_2_62(la->nodetree);
}
for (world = bmain->world.first; world; world = world->id.next) {
@@ -1177,7 +1176,6 @@ void blo_do_versions_260(FileData *fd, Library *UNUSED(lib), Main *bmain)
Scene *sce;
Material *mat;
Tex *tex;
- Lamp *lamp;
World *world;
bNodeTree *ntree;
@@ -1193,9 +1191,9 @@ void blo_do_versions_260(FileData *fd, Library *UNUSED(lib), Main *bmain)
if (tex->nodetree)
do_versions_nodetree_frame_2_64_6(tex->nodetree);
- for (lamp = bmain->lamp.first; lamp; lamp = lamp->id.next)
- if (lamp->nodetree)
- do_versions_nodetree_frame_2_64_6(lamp->nodetree);
+ for (Light *la = bmain->light.first; la; la = la->id.next)
+ if (la->nodetree)
+ do_versions_nodetree_frame_2_64_6(la->nodetree);
for (world = bmain->world.first; world; world = world->id.next)
if (world->nodetree)
@@ -2319,10 +2317,10 @@ void blo_do_versions_260(FileData *fd, Library *UNUSED(lib), Main *bmain)
{
Scene *scene;
Object *ob;
- Lamp *lamp;
- for (lamp = bmain->lamp.first; lamp; lamp = lamp->id.next)
- lamp->spotsize = DEG2RADF(lamp->spotsize);
+ for (Light *la = bmain->light.first; la; la = la->id.next) {
+ la->spotsize = DEG2RADF(la->spotsize);
+ }
for (ob = bmain->object.first; ob; ob = ob->id.next) {
ModifierData *md;