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:
authorGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2010-11-01 04:48:43 +0300
committerGuillermo S. Romero <gsr.b3d@infernal-iceberg.com>2010-11-01 04:48:43 +0300
commitf1e10b093582fdb3370becc89ea25cfd0948f11d (patch)
treee05474b12c773e2373e1ba15a45fea5e2dd4a7be /source/blender/blenfont/intern/blf_glyph.c
parentd9a7358b4cd09980e35ea8e51e77d487c8c99444 (diff)
Fix silly column paste.
Diffstat (limited to 'source/blender/blenfont/intern/blf_glyph.c')
-rw-r--r--source/blender/blenfont/intern/blf_glyph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c
index 4ac3397cb22..2c0b833297e 100644
--- a/source/blender/blenfont/intern/blf_glyph.c
+++ b/source/blender/blenfont/intern/blf_glyph.c
@@ -218,7 +218,7 @@ GlyphBLF *blf_glyph_add(FontBLF *font, FT_UInt index, unsigned int c)
/* Convert result from 1 bit per pixel to 8 bit per pixel */
/* Accum errors for later, fine if not interested beyond "ok vs any error" */
- err += FT_Bitmap_New(&tempbitmap);
+ FT_Bitmap_New(&tempbitmap);
err += FT_Bitmap_Convert(global_ft_lib, &slot->bitmap, &tempbitmap, 1); /* Does Blender use Pitch 1 always? It works so far */
err += FT_Bitmap_Copy(global_ft_lib, &tempbitmap, &slot->bitmap);
err += FT_Bitmap_Done(global_ft_lib, &tempbitmap);