[Bf-blender-cvs] [496c325ffa8] master: Expose 'debug_io' flag in bpy.app

Bastien Montagne noreply at git.blender.org
Wed Oct 17 16:45:34 CEST 2018


Commit: 496c325ffa84cec631c8e45723decbb90037156a
Author: Bastien Montagne
Date:   Wed Oct 17 16:42:36 2018 +0200
Branches: master
https://developer.blender.org/rB496c325ffa84cec631c8e45723decbb90037156a

Expose 'debug_io' flag in bpy.app

===================================================================

M	source/blender/python/intern/bpy_app.c

===================================================================

diff --git a/source/blender/python/intern/bpy_app.c b/source/blender/python/intern/bpy_app.c
index d519b5f8aef..928e14c09bf 100644
--- a/source/blender/python/intern/bpy_app.c
+++ b/source/blender/python/intern/bpy_app.c
@@ -364,6 +364,7 @@ static PyGetSetDef bpy_app_getsets[] = {
 	{(char *)"debug_depsgraph_pretty", bpy_app_debug_get, bpy_app_debug_set, (char *)bpy_app_debug_doc, (void *)G_DEBUG_DEPSGRAPH_PRETTY},
 	{(char *)"debug_simdata",   bpy_app_debug_get, bpy_app_debug_set, (char *)bpy_app_debug_doc, (void *)G_DEBUG_SIMDATA},
 	{(char *)"debug_gpumem",    bpy_app_debug_get, bpy_app_debug_set, (char *)bpy_app_debug_doc, (void *)G_DEBUG_GPU_MEM},
+	{(char *)"debug_io",        bpy_app_debug_get, bpy_app_debug_set, (char *)bpy_app_debug_doc, (void *)G_DEBUG_IO},
 
 	{(char *)"binary_path_python", bpy_app_binary_path_python_get, NULL, (char *)bpy_app_binary_path_python_doc, NULL},



More information about the Bf-blender-cvs mailing list