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:
authorCampbell Barton <ideasman42@gmail.com>2010-10-30 02:59:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-30 02:59:39 +0400
commitced06081b8ef2c9cefd0ed61461c54d5393ca23d (patch)
treecf3b5fd656c58bce003bc9958d3f49621f47dc2a /source/blender/python/generic/bgl.h
parent719c941c58f8b4acaced83c7521a6746fdd0841f (diff)
use PyImport_ExtendInittab for py module initialization rather then adding to sys.modules directly, no functional change.
Diffstat (limited to 'source/blender/python/generic/bgl.h')
-rw-r--r--source/blender/python/generic/bgl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/bgl.h b/source/blender/python/generic/bgl.h
index 80b0b90f643..5e40cda3114 100644
--- a/source/blender/python/generic/bgl.h
+++ b/source/blender/python/generic/bgl.h
@@ -38,7 +38,7 @@
#include <Python.h>
-PyObject *BGL_Init(void);
+PyObject *BPyInit_bgl(void);
/*@ Create a buffer object */
/*@ dimensions is an array of ndimensions integers representing the size of each dimension */