Fluid UI:
* Display Simulation threads only, when built with OpenMP.
This commit is contained in:
@@ -66,6 +66,7 @@ static PyStructSequence_Field app_builtopts_info_fields[] = {
|
||||
{(char *)"collada", NULL},
|
||||
{(char *)"opencolorio", NULL},
|
||||
{(char *)"player", NULL},
|
||||
{(char *)"openmp", NULL},
|
||||
{NULL}
|
||||
};
|
||||
|
||||
@@ -288,6 +289,12 @@ static PyObject *make_builtopts_info(void)
|
||||
SetObjIncref(Py_False);
|
||||
#endif
|
||||
|
||||
#ifdef WITH_OPENMP
|
||||
SetObjIncref(Py_True);
|
||||
#else
|
||||
SetObjIncref(Py_False);
|
||||
#endif
|
||||
|
||||
#undef SetObjIncref
|
||||
|
||||
return builtopts_info;
|
||||
|
Reference in New Issue
Block a user