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:
authorClément Foucault <foucault.clem@gmail.com>2020-10-09 17:33:24 +0300
committerClément Foucault <foucault.clem@gmail.com>2020-10-09 17:33:59 +0300
commit14c53c5018abaa1ab05f1821cdb1b2e0b7824d21 (patch)
tree5f844203321a642e2e23f77b7634e63f88a918cf /source/blender/python/intern/bpy.c
parentd39043b5ae054510e3683b63cfefde76e5a4c6db (diff)
BGL: fix issues with addons using BGL at startup
This was an issue for Cycles. This also makes the `GPU_bgl*` functions less fragile by checking for null pointers.
Diffstat (limited to 'source/blender/python/intern/bpy.c')
-rw-r--r--source/blender/python/intern/bpy.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/python/intern/bpy.c b/source/blender/python/intern/bpy.c
index de8fd87db58..a4a73d2aa75 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -35,6 +35,8 @@
#include "RNA_access.h"
#include "RNA_types.h"
+#include "GPU_state.h"
+
#include "bpy.h"
#include "bpy_app.h"
#include "bpy_capi_utils.h"
@@ -330,6 +332,9 @@ static PyMethodDef meth_bpy_escape_identifier = {
static PyObject *bpy_import_test(const char *modname)
{
PyObject *mod = PyImport_ImportModuleLevel(modname, NULL, NULL, NULL, 0);
+
+ GPU_bgl_end();
+
if (mod) {
Py_DECREF(mod);
}