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:
Diffstat (limited to 'source/gameengine/VideoTexture/blendVideoTex.cpp')
-rw-r--r--source/gameengine/VideoTexture/blendVideoTex.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/gameengine/VideoTexture/blendVideoTex.cpp b/source/gameengine/VideoTexture/blendVideoTex.cpp
index 9b046d46412..037d6648b56 100644
--- a/source/gameengine/VideoTexture/blendVideoTex.cpp
+++ b/source/gameengine/VideoTexture/blendVideoTex.cpp
@@ -187,7 +187,7 @@ static struct PyModuleDef VideoTexture_module_def = {
PyMODINIT_FUNC initVideoTexturePythonBinding(void)
{
PyObject *m;
-
+
// initialize GL extensions
//bgl::InitExtensions(0);
@@ -197,9 +197,9 @@ PyMODINIT_FUNC initVideoTexturePythonBinding(void)
if (!pyImageTypes.ready())
return NULL;
- if (!pyFilterTypes.ready())
+ if (!pyFilterTypes.ready())
return NULL;
- if (PyType_Ready(&TextureType) < 0)
+ if (PyType_Ready(&TextureType) < 0)
return NULL;
#ifdef WITH_GAMEENGINE_DECKLINK
if (PyType_Ready(&DeckLinkType) < 0)
@@ -209,7 +209,7 @@ PyMODINIT_FUNC initVideoTexturePythonBinding(void)
m = PyModule_Create(&VideoTexture_module_def);
PyDict_SetItemString(PySys_GetObject("modules"), VideoTexture_module_def.m_name, m);
- if (m == NULL)
+ if (m == NULL)
return NULL;
// initialize classes
@@ -259,7 +259,7 @@ PyMODINIT_FUNC initVideoTexturePythonBinding(void)
// init last error description
Exception::m_lastError = "";
-
+
return m;
}