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:
authorBrecht Van Lommel <brecht@blender.org>2020-03-06 13:51:17 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-03-06 14:19:11 +0300
commite96b1035364122178d5fcec7cf4d4bab7c8cb051 (patch)
tree2aaf2403e276bac6285f5b5788105775e62cb634 /source/blender/blenkernel/intern/idtype.c
parent297261eb906c56c7decf4401e6a3e06cec1691e8 (diff)
Cleanup: move camera, lights, world to IDTypeInfo
Diffstat (limited to 'source/blender/blenkernel/intern/idtype.c')
-rw-r--r--source/blender/blenkernel/intern/idtype.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/idtype.c b/source/blender/blenkernel/intern/idtype.c
index 1453234d577..2193ff2165c 100644
--- a/source/blender/blenkernel/intern/idtype.c
+++ b/source/blender/blenkernel/intern/idtype.c
@@ -54,6 +54,39 @@ static void id_type_init(void)
INIT_TYPE(ID_SCE);
INIT_TYPE(ID_LI);
INIT_TYPE(ID_OB);
+ // INIT_TYPE(ID_ME);
+ // INIT_TYPE(ID_CU);
+ // INIT_TYPE(ID_MB);
+ // INIT_TYPE(ID_MA);
+ // INIT_TYPE(ID_TE);
+ // INIT_TYPE(ID_IM);
+ // INIT_TYPE(ID_LT);
+ INIT_TYPE(ID_LA);
+ INIT_TYPE(ID_CA);
+ // INIT_TYPE(ID_IP);
+ // INIT_TYPE(ID_KE);
+ INIT_TYPE(ID_WO);
+ // INIT_TYPE(ID_SCR);
+ // INIT_TYPE(ID_VF);
+ // INIT_TYPE(ID_TXT);
+ // INIT_TYPE(ID_SPK);
+ // INIT_TYPE(ID_SO);
+ // INIT_TYPE(ID_GR);
+ // INIT_TYPE(ID_AR);
+ // INIT_TYPE(ID_AC);
+ // INIT_TYPE(ID_NT);
+ // INIT_TYPE(ID_BR);
+ // INIT_TYPE(ID_PA);
+ // INIT_TYPE(ID_GD);
+ // INIT_TYPE(ID_WM);
+ // INIT_TYPE(ID_MC);
+ // INIT_TYPE(ID_MSK);
+ // INIT_TYPE(ID_LS);
+ // INIT_TYPE(ID_PAL);
+ // INIT_TYPE(ID_PC);
+ // INIT_TYPE(ID_CF);
+ // INIT_TYPE(ID_WS);
+ INIT_TYPE(ID_LP);
#undef INIT_TYPE
}