svn commit: r374693 - branches/2014Q4/graphics/blender/files

Marcus von Appen mva at FreeBSD.org
Sun Dec 14 08:59:14 UTC 2014


Author: mva
Date: Sun Dec 14 08:59:13 2014
New Revision: 374693
URL: https://svnweb.freebsd.org/changeset/ports/374693
QAT: https://qat.redports.org/buildarchive/r374693/

Log:
  MFH: r374641
  
  - Unbreak after the recent print/freetype2 update
  
  Approved by:	ports-secteam (rea@)

Added:
  branches/2014Q4/graphics/blender/files/patch-source_blender_blenfont_intern_blf__glyph.c   (contents, props changed)

Added: branches/2014Q4/graphics/blender/files/patch-source_blender_blenfont_intern_blf__glyph.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2014Q4/graphics/blender/files/patch-source_blender_blenfont_intern_blf__glyph.c	Sun Dec 14 08:59:13 2014	(r374693)
@@ -0,0 +1,13 @@
+--- source/blender/blenfont/intern/blf_glyph.c.orig	2014-12-11 06:47:44 UTC
++++ source/blender/blenfont/intern/blf_glyph.c
+@@ -262,8 +262,8 @@ GlyphBLF *blf_glyph_add(FontBLF *font, u
+ 	g->xoff = -1;
+ 	g->yoff = -1;
+ 	bitmap = slot->bitmap;
+-	g->width = bitmap.width;
+-	g->height = bitmap.rows;
++	g->width = (int)bitmap.width;
++	g->height = (int)bitmap.rows;
+ 
+ 	if (g->width && g->height) {
+ 		if (sharp) {


More information about the svn-ports-branches mailing list