svn commit: r374641 - head/graphics/blender/files

Marcus von Appen mva at FreeBSD.org
Sat Dec 13 09:06:10 UTC 2014


Author: mva
Date: Sat Dec 13 09:06:09 2014
New Revision: 374641
URL: https://svnweb.freebsd.org/changeset/ports/374641
QAT: https://qat.redports.org/buildarchive/r374641/

Log:
  - Unbreak after the recent print/freetype2 update
  
  MFH:		2014Q4

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

Added: head/graphics/blender/files/patch-source_blender_blenfont_intern_blf__glyph.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/blender/files/patch-source_blender_blenfont_intern_blf__glyph.c	Sat Dec 13 09:06:09 2014	(r374641)
@@ -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-head mailing list