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:
authorDiego Borghetti <bdiego@gmail.com>2009-02-20 08:42:44 +0300
committerDiego Borghetti <bdiego@gmail.com>2009-02-20 08:42:44 +0300
commit8145489a7dc2889bc0fa61f0e23c4dc0f7b300be (patch)
treebcf58e46a5844e2b3852576578a4e8aaa3b716fd /source/blender/blenfont/intern/blf_internal_types.h
parent72e99d918215ed549a84e360530fc99d1caf56a1 (diff)
Add clipping text option to blenfont also add an enable/disable
function for aspect and rotation (and the new clipping). Update source/Makefile to point to the new libed_sculpt_paint.
Diffstat (limited to 'source/blender/blenfont/intern/blf_internal_types.h')
-rw-r--r--source/blender/blenfont/intern/blf_internal_types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenfont/intern/blf_internal_types.h b/source/blender/blenfont/intern/blf_internal_types.h
index a0198283869..ccfd5c64200 100644
--- a/source/blender/blenfont/intern/blf_internal_types.h
+++ b/source/blender/blenfont/intern/blf_internal_types.h
@@ -151,9 +151,6 @@ typedef struct FontBLF {
/* clipping rectangle. */
rctf clip_rec;
- /* and clipping mode. */
- int clip_mode;
-
/* font dpi (default 72). */
int dpi;
@@ -163,6 +160,9 @@ typedef struct FontBLF {
/* max texture size. */
int max_tex_size;
+ /* font options. */
+ int flags;
+
/* freetype2 face. */
FT_Face face;