Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/intern/bpy_interface.c
| Show First 20 Lines • Show All 68 Lines • ▼ Show 20 Lines | |||||
| #include "../generic/bpy_internal_import.h" /* our own imports */ | #include "../generic/bpy_internal_import.h" /* our own imports */ | ||||
| #include "../generic/py_capi_utils.h" | #include "../generic/py_capi_utils.h" | ||||
| /* inittab initialization functions */ | /* inittab initialization functions */ | ||||
| #include "../generic/bgl.h" | #include "../generic/bgl.h" | ||||
| #include "../generic/blf_py_api.h" | #include "../generic/blf_py_api.h" | ||||
| #include "../generic/idprop_py_api.h" | #include "../generic/idprop_py_api.h" | ||||
| #include "../generic/imbuf_py_api.h" | #include "../generic/imbuf_py_api.h" | ||||
| #include "../gpu/gpu_py_api.h" | #include "../gpu/gpu_py.h" | ||||
| #include "../bmesh/bmesh_py_api.h" | #include "../bmesh/bmesh_py_api.h" | ||||
| #include "../mathutils/mathutils.h" | #include "../mathutils/mathutils.h" | ||||
| /* Logging types to use anywhere in the Python modules. */ | /* Logging types to use anywhere in the Python modules. */ | ||||
| CLG_LOGREF_DECLARE_GLOBAL(BPY_LOG_CONTEXT, "bpy.context"); | CLG_LOGREF_DECLARE_GLOBAL(BPY_LOG_CONTEXT, "bpy.context"); | ||||
| CLG_LOGREF_DECLARE_GLOBAL(BPY_LOG_RNA, "bpy.rna"); | CLG_LOGREF_DECLARE_GLOBAL(BPY_LOG_RNA, "bpy.rna"); | ||||
| /* for internal use, when starting and ending python scripts */ | /* for internal use, when starting and ending python scripts */ | ||||
| ▲ Show 20 Lines • Show All 949 Lines • Show Last 20 Lines | |||||