diff --git a/source/blender/python/generic/bgl.cc b/source/blender/python/generic/bgl.cc index 9b76b64878b..93af1549592 100644 --- a/source/blender/python/generic/bgl.cc +++ b/source/blender/python/generic/bgl.cc @@ -51,7 +51,7 @@ static void report_deprecated_call(const char *function_name) } char message[256]; SNPRINTF(message, - "'bgl.gl%s' is deprecated and will be removed in Blender 4.0. Report or update your " + "'bgl.gl%s' is deprecated and will not work on all platforms. Report or update your " "script to use 'gpu' module.", function_name); CLOG_WARN(&LOG, "%s", message); @@ -2675,7 +2675,7 @@ PyObject *BPyInit_bgl() if (GPU_backend_get_type() != GPU_BACKEND_OPENGL) { CLOG_WARN(&LOG, "'bgl' imported without an OpenGL backend. Please update your add-ons to use the " - "'gpu' module. In Blender 4.0 'bgl' will be removed."); + "'gpu' module."); } #endif