Fix T102845: GPU python crash in background mode
`BPYGPU_IS_INIT_OR_ERROR_OBJ` is not implemented in all pygpu functions. Instead of copying and pasting that call across the API when it has no gpu context, override the methods with one that always reports error.
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
#include "GPU_context.h"
|
||||
#include "GPU_platform.h"
|
||||
|
||||
#include "gpu_py.h"
|
||||
#include "gpu_py_platform.h" /* Own include. */
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
@@ -155,7 +156,7 @@ PyObject *bpygpu_platform_init(void)
|
||||
{
|
||||
PyObject *submodule;
|
||||
|
||||
submodule = PyModule_Create(&pygpu_platform_module_def);
|
||||
submodule = bpygpu_create_module(&pygpu_platform_module_def);
|
||||
|
||||
return submodule;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user