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:
Diffstat (limited to 'intern/clog/clog.c')
-rw-r--r--intern/clog/clog.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/intern/clog/clog.c b/intern/clog/clog.c
index 37c8393f532..2bc3985c71f 100644
--- a/intern/clog/clog.c
+++ b/intern/clog/clog.c
@@ -755,4 +755,12 @@ void CLG_logref_init(CLG_LogRef *clg_ref)
#endif
}
+int CLG_color_support_get(CLG_LogRef *clg_ref)
+{
+ if (clg_ref->type == NULL) {
+ CLG_logref_init(clg_ref);
+ }
+ return clg_ref->type->ctx->use_color;
+}
+
/** \} */