Changeset View
Changeset View
Standalone View
Standalone View
source/creator/creator.c
| Show First 20 Lines • Show All 57 Lines • ▼ Show 20 Lines | |||||
| #include "BKE_blender.h" | #include "BKE_blender.h" | ||||
| #include "BKE_brush.h" | #include "BKE_brush.h" | ||||
| #include "BKE_cachefile.h" | #include "BKE_cachefile.h" | ||||
| #include "BKE_context.h" | #include "BKE_context.h" | ||||
| #include "BKE_font.h" | #include "BKE_font.h" | ||||
| #include "BKE_global.h" | #include "BKE_global.h" | ||||
| #include "BKE_material.h" | #include "BKE_material.h" | ||||
| #include "BKE_modifier.h" | #include "BKE_modifier.h" | ||||
| #include "BKE_gpencil_modifier.h" | |||||
| #include "BKE_node.h" | #include "BKE_node.h" | ||||
| #include "BKE_shader_fx.h" | |||||
| #include "BKE_sound.h" | #include "BKE_sound.h" | ||||
| #include "BKE_image.h" | #include "BKE_image.h" | ||||
| #include "BKE_particle.h" | #include "BKE_particle.h" | ||||
| #include "DEG_depsgraph.h" | #include "DEG_depsgraph.h" | ||||
| #include "IMB_imbuf.h" /* for IMB_init */ | #include "IMB_imbuf.h" /* for IMB_init */ | ||||
| ▲ Show 20 Lines • Show All 291 Lines • ▼ Show 20 Lines | #endif | ||||
| DNA_sdna_current_init(); | DNA_sdna_current_init(); | ||||
| BKE_blender_globals_init(); /* blender.c */ | BKE_blender_globals_init(); /* blender.c */ | ||||
| IMB_init(); | IMB_init(); | ||||
| BKE_cachefiles_init(); | BKE_cachefiles_init(); | ||||
| BKE_images_init(); | BKE_images_init(); | ||||
| BKE_modifier_init(); | BKE_modifier_init(); | ||||
| BKE_gpencil_modifier_init(); | |||||
| BKE_shaderfx_init(); | |||||
| DEG_register_node_types(); | DEG_register_node_types(); | ||||
| BKE_brush_system_init(); | BKE_brush_system_init(); | ||||
| RE_texture_rng_init(); | RE_texture_rng_init(); | ||||
| BLI_callback_global_init(); | BLI_callback_global_init(); | ||||
| ▲ Show 20 Lines • Show All 153 Lines • Show Last 20 Lines | |||||