Cleanup: use term init instead of initialize/initialise

The abbreviation 'init' is brief, unambiguous and already used
in thousands of places, also initialize is often accidentally
written with British spelling.
This commit is contained in:
2020-08-01 13:02:21 +10:00
parent 006e850a84
commit 901ee66ea1
111 changed files with 276 additions and 277 deletions

View File

@@ -43,9 +43,9 @@
/** \name Utils to invalidate functions
* \{ */
bool bpygpu_is_initialized_or_error(void)
bool bpygpu_is_init_or_error(void)
{
if (!GPU_is_initialized()) {
if (!GPU_is_init()) {
PyErr_SetString(PyExc_SystemError,
"GPU functions for drawing are not available in background mode");