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-02-28 14:18:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-28 14:18:54 +0300
commit3bbf1917c51bc005d8c5f5d64c5f7546b3e459c2 (patch)
tree677864a3240218f4d354741152bc33670a95275a /source/blender/python/intern/bpy.c
parentf9d24eab559b2252c8840498b5bdc66170375f29 (diff)
python BLF module for drawing text, updated template to draw text in the 3D view.
Diffstat (limited to 'source/blender/python/intern/bpy.c')
-rw-r--r--source/blender/python/intern/bpy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/intern/bpy.c b/source/blender/python/intern/bpy.c
index 43accf939aa..12979cd5811 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -38,6 +38,7 @@
#include "../generic/Mathutils.h"
#include "../generic/Geometry.h"
#include "../generic/BGL.h"
+#include "../generic/BLF.h"
#include "../generic/IDProp.h"
static char bpy_home_paths_doc[] =
@@ -106,6 +107,7 @@ void BPy_init_modules( void )
Geometry_Init();
Mathutils_Init();
BGL_Init();
+ BLF_Init();
IDProp_Init_Types();