Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/intern/bpy_app.c
| Show First 20 Lines • Show All 418 Lines • ▼ Show 20 Lines | static PyGetSetDef bpy_app_getsets[] = { | ||||
| bpy_app_debug_set, | bpy_app_debug_set, | ||||
| bpy_app_debug_doc, | bpy_app_debug_doc, | ||||
| (void *)G_DEBUG_DEPSGRAPH_PRETTY}, | (void *)G_DEBUG_DEPSGRAPH_PRETTY}, | ||||
| {"debug_simdata", | {"debug_simdata", | ||||
| bpy_app_debug_get, | bpy_app_debug_get, | ||||
| bpy_app_debug_set, | bpy_app_debug_set, | ||||
| bpy_app_debug_doc, | bpy_app_debug_doc, | ||||
| (void *)G_DEBUG_SIMDATA}, | (void *)G_DEBUG_SIMDATA}, | ||||
| {"debug_gpumem", | |||||
| bpy_app_debug_get, | |||||
| bpy_app_debug_set, | |||||
| bpy_app_debug_doc, | |||||
| (void *)G_DEBUG_GPU_MEM}, | |||||
| {"debug_io", bpy_app_debug_get, bpy_app_debug_set, bpy_app_debug_doc, (void *)G_DEBUG_IO}, | {"debug_io", bpy_app_debug_get, bpy_app_debug_set, bpy_app_debug_doc, (void *)G_DEBUG_IO}, | ||||
| {"use_event_simulate", | {"use_event_simulate", | ||||
| bpy_app_global_flag_get, | bpy_app_global_flag_get, | ||||
| bpy_app_global_flag_set__only_disable, | bpy_app_global_flag_set__only_disable, | ||||
| bpy_app_global_flag_doc, | bpy_app_global_flag_doc, | ||||
| (void *)G_FLAG_EVENT_SIMULATE}, | (void *)G_FLAG_EVENT_SIMULATE}, | ||||
| ▲ Show 20 Lines • Show All 72 Lines • Show Last 20 Lines | |||||