[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28341] trunk/blender/source/blender: BugFix:

Diego Borghetti bdiego at gmail.com
Thu Apr 22 12:56:45 CEST 2010


Revision: 28341
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28341
Author:   bdiego
Date:     2010-04-22 12:56:45 +0200 (Thu, 22 Apr 2010)

Log Message:
-----------
BugFix:
[#20854] PROPERTIES STAMP: Rendering stamp flickers in output renders

Blenfont was not thread safe, that is why one thread can change
the font properties (size, dpi, color, etc) at the same time
that the stamp draw on the image, and then the problem.

To make blenfont thread safe I have to change two important things:

1) Every BLF_* function take one argument, the font id.
2) We have two new function to make font "thread safe":
	BLF_load_unique
	BLF_load_mem_unique

This two function are for case like stamp, that need and own font
that don't share the glyph cache, so can draw without problem
in a different thread.

Why the BLF_*_unique function ?

Because blenfont keep only one copy of a font and keep a list of
"glyph cache". Every glyph cache have size and dpi, so if two
different thread access the same font at the same time, they can
change value and finish with something like the stamp problem.

Why don't remove the glyph cache ?

Because if we do that, we finish with a font object for every size
and dpi, and the stamp is really a special case that happen in
the rendering process, so I really thing is better keep the
glyph cache and make this two new function to handle this
special case.

(When I say "font object" I mean have the same freetype font multiple
times just to have differents size and dpi)

As Matt point we still can have one case that two thread access
the BLF_*_unique function at the same time, but I am looking to
fix this with some class of thread lock.

For now I test and work fine, so if some one found problem, please
let me know.

Campbell I have to change the python api (python/generic/blf_api.c)
to the new syntax, so maybe you can take a look at this.

Modified Paths:
--------------
    trunk/blender/source/blender/blenfont/BLF_api.h
    trunk/blender/source/blender/blenfont/intern/blf.c
    trunk/blender/source/blender/blenkernel/intern/image.c
    trunk/blender/source/blender/blenkernel/intern/image_gen.c
    trunk/blender/source/blender/editors/interface/interface.c
    trunk/blender/source/blender/editors/interface/interface_handlers.c
    trunk/blender/source/blender/editors/interface/interface_regions.c
    trunk/blender/source/blender/editors/interface/interface_style.c
    trunk/blender/source/blender/editors/interface/interface_widgets.c
    trunk/blender/source/blender/editors/interface/view2d.c
    trunk/blender/source/blender/editors/space_console/console_draw.c
    trunk/blender/source/blender/editors/space_file/file_draw.c
    trunk/blender/source/blender/editors/space_file/filesel.c
    trunk/blender/source/blender/editors/space_text/text_draw.c
    trunk/blender/source/blender/python/generic/blf_api.c
    trunk/blender/source/blender/windowmanager/intern/wm_operators.c

Added Paths:
-----------
    trunk/blender/source/blender/blenfont/BLF_types.h

Modified: trunk/blender/source/blender/blenfont/BLF_api.h
===================================================================
--- trunk/blender/source/blender/blenfont/BLF_api.h	2010-04-22 08:25:05 UTC (rev 28340)
+++ trunk/blender/source/blender/blenfont/BLF_api.h	2010-04-22 10:56:45 UTC (rev 28341)
@@ -37,50 +37,47 @@
 int BLF_load(char *name);
 int BLF_load_mem(char *name, unsigned char *mem, int mem_size);
 
+int BLF_load_unique(char *name);
+int BLF_load_mem_unique(char *name, unsigned char *mem, int mem_size);
+
 /* Attach a file with metrics information from memory. */
-void BLF_metrics_attach(unsigned char *mem, int mem_size);
+void BLF_metrics_attach(int fontid, unsigned char *mem, int mem_size);
 
-/*
- * Set/Get the current font.
- */
-void BLF_set(int fontid);
-int BLF_get(void);
+void BLF_aspect(int fontid, float aspect);
+void BLF_position(int fontid, float x, float y, float z);
+void BLF_size(int fontid, int size, int dpi);
 
-void BLF_aspect(float aspect);
-void BLF_position(float x, float y, float z);
-void BLF_size(int size, int dpi);
-
 /* Draw the string using the default font, size and dpi. */
 void BLF_draw_default(float x, float y, float z, char *str);
 
 /* Draw the string using the current font. */
-void BLF_draw(char *str);
+void BLF_draw(int fontid, char *str);
 
 /*
  * This function return the bounding box of the string
  * and are not multiplied by the aspect.
  */
-void BLF_boundbox(char *str, struct rctf *box);
+void BLF_boundbox(int fontid, char *str, struct rctf *box);
 
 /*
  * The next both function return the width and height
  * of the string, using the current font and both value 
  * are multiplied by the aspect of the font.
  */
-float BLF_width(char *str);
-float BLF_height(char *str);
+float BLF_width(int fontid, char *str);
+float BLF_height(int fontid, char *str);
 
 /*
  * The following function return the width and height of the string, but
  * just in one call, so avoid extra freetype2 stuff.
  */
-void BLF_width_and_height(char *str, float *width, float *height);
+void BLF_width_and_height(int fontid, char *str, float *width, float *height);
 
 /*
  * For fixed width fonts only, returns the width of a
  * character.
  */
-float BLF_fixed_width(void);
+float BLF_fixed_width(int fontid);
 
 /*
  * and this two function return the width and height
@@ -91,27 +88,33 @@
 float BLF_height_default(char *str);
 
 /*
- * set rotation for default font
+ * Set rotation for default font.
  */
-void BLF_default_rotation(float angle);
+void BLF_rotation_default(float angle);
 
 /*
+ * Enable/disable options to the default font.
+ */
+void BLF_enable_default(int option);
+void BLF_disable_default(int option);
+
+/*
  * By default, rotation and clipping are disable and
  * have to be enable/disable using BLF_enable/disable.
  */
-void BLF_rotation(float angle);
-void BLF_clipping(float xmin, float ymin, float xmax, float ymax);
-void BLF_blur(int size);
+void BLF_rotation(int fontid, float angle);
+void BLF_clipping(int fontid, float xmin, float ymin, float xmax, float ymax);
+void BLF_blur(int fontid, int size);
 
-void BLF_enable(int option);
-void BLF_disable(int option);
+void BLF_enable(int fontid, int option);
+void BLF_disable(int fontid, int option);
 
 /*
  * Shadow options, level is the blur level, can be 3, 5 or 0 and
  * the other argument are the rgba color.
  * Take care that shadow need to be enable using BLF_enable!!.
  */
-void BLF_shadow(int level, float r, float g, float b, float a);
+void BLF_shadow(int fontid, int level, float r, float g, float b, float a);
 
 /*
  * Set the offset for shadow text, this is the current cursor
@@ -119,7 +122,7 @@
  * this function, the current position is calculate only on
  * BLF_draw, so it's safe call this whenever you like.
  */
-void BLF_shadow_offset(int x, int y);
+void BLF_shadow_offset(int fontid, int x, int y);
 
 /*
  * Set the buffer, size and number of channels to draw, one thing to take care is call
@@ -130,18 +133,18 @@
  *
  *	BLF_buffer(NULL, NULL, 0, 0, 0);
  */
-void BLF_buffer(float *fbuf, unsigned char *cbuf, unsigned int w, unsigned int h, int nch);
+void BLF_buffer(int fontid, float *fbuf, unsigned char *cbuf, unsigned int w, unsigned int h, int nch);
 
 /*
  * Set the color to be used for text.
  */
-void BLF_buffer_col(float r, float g, float b, float a);
+void BLF_buffer_col(int fontid, float r, float g, float b, float a);
 
 /*
  * Draw the string into the buffer, this function draw in both buffer, float and unsigned char _BUT_
  * it's not necessary set both buffer, NULL is valid here.
  */
-void BLF_draw_buffer(char *str);
+void BLF_draw_buffer(int fontid, char *str);
 
 /*
  * Search the path directory to the locale files, this try all

Added: trunk/blender/source/blender/blenfont/BLF_types.h
===================================================================

Modified: trunk/blender/source/blender/blenfont/intern/blf.c
===================================================================
--- trunk/blender/source/blender/blenfont/intern/blf.c	2010-04-22 08:25:05 UTC (rev 28340)
+++ trunk/blender/source/blender/blenfont/intern/blf.c	2010-04-22 10:56:45 UTC (rev 28341)
@@ -61,14 +61,18 @@
 /* Number of font. */
 int global_font_num= 0;
 
-/* Current font. */
-int global_font_cur= 0;
-
 /* Default size and dpi, for BLF_draw_default. */
 int global_font_default= -1;
 int global_font_points= 11;
 int global_font_dpi= 72;
 
+static FontBLF *BLF_get(int fontid)
+{
+	if (fontid >= 0 && fontid < BLF_MAX_FONT)
+		return(global_font[fontid]);
+	return(NULL);
+}
+
 int BLF_init(int points, int dpi)
 {
 	int i;
@@ -149,11 +153,48 @@
 	return(i);
 }
 
-void BLF_metrics_attach(unsigned char *mem, int mem_size)
+int BLF_load_unique(char *name)
 {
 	FontBLF *font;
+	char *filename;
+	int i;
 
-	font= global_font[global_font_cur];
+	if (!name)
+		return(-1);
+
+	/* Don't search in the cache!! make a new
+	 * object font, this is for keep fonts threads safe.
+	 */
+	if (global_font_num+1 >= BLF_MAX_FONT) {
+		printf("Too many fonts!!!\n");
+		return(-1);
+	}
+
+	filename= blf_dir_search(name);
+	if (!filename) {
+		printf("Can't find font: %s\n", name);
+		return(-1);
+	}
+
+	font= blf_font_new(name, filename);
+	MEM_freeN(filename);
+
+	if (!font) {
+		printf("Can't load font: %s\n", name);
+		return(-1);
+	}
+
+	global_font[global_font_num]= font;
+	i= global_font_num;
+	global_font_num++;
+	return(i);
+}
+
+void BLF_metrics_attach(int fontid, unsigned char *mem, int mem_size)
+{
+	FontBLF *font;
+
+	font= BLF_get(fontid);
 	if (font)
 		blf_font_attach_from_mem(font, mem, mem_size);
 }
@@ -194,50 +235,91 @@
 	return(i);
 }
 
-void BLF_set(int fontid)
+int BLF_load_mem_unique(char *name, unsigned char *mem, int mem_size)
 {
-	if (fontid >= 0 && fontid < BLF_MAX_FONT)
-		global_font_cur= fontid;
+	FontBLF *font;
+	int i;
+
+	if (!name)
+		return(-1);
+
+	/*
+	 * Don't search in the cache, make a new object font!
+	 * this is to keep the font thread safe.
+	 */
+	if (global_font_num+1 >= BLF_MAX_FONT) {
+		printf("Too many fonts!!!\n");
+		return(-1);
+	}
+
+	if (!mem || !mem_size) {
+		printf("Can't load font: %s from memory!!\n", name);
+		return(-1);
+	}
+
+	font= blf_font_new_from_mem(name, mem, mem_size);
+	if (!font) {
+		printf("Can't load font: %s from memory!!\n", name);
+		return(-1);
+	}
+
+	global_font[global_font_num]= font;
+	i= global_font_num;
+	global_font_num++;
+	return(i);
 }
 
-int BLF_get(void)
+void BLF_enable(int fontid, int option)
 {
-	return(global_font_cur);
+	FontBLF *font;
+
+	font= BLF_get(fontid);
+	if (font)
+		font->flags |= option;
 }
 
-void BLF_enable(int option)
+void BLF_disable(int fontid, int option)
 {
 	FontBLF *font;
 
-	font= global_font[global_font_cur];
+	font= BLF_get(fontid);
 	if (font)
+		font->flags &= ~option;
+}
+
+void BLF_enable_default(int option)
+{
+	FontBLF *font;
+
+	font= BLF_get(global_font_default);
+	if (font)
 		font->flags |= option;
 }
 
-void BLF_disable(int option)
+void BLF_disable_default(int option)
 {
 	FontBLF *font;
 
-	font= global_font[global_font_cur];
+	font= BLF_get(global_font_default);
 	if (font)
 		font->flags &= ~option;
 }
 
-void BLF_aspect(float aspect)
+void BLF_aspect(int fontid, float aspect)
 {
 	FontBLF *font;
 
-	font= global_font[global_font_cur];
+	font= BLF_get(fontid);
 	if (font)
 		font->aspect= aspect;
 }
 
-void BLF_position(float x, float y, float z)
+void BLF_position(int fontid, float x, float y, float z)
 {
 	FontBLF *font;
 	float remainder;
 
-	font= global_font[global_font_cur];
+	font= BLF_get(fontid);
 	if (font) {
 		remainder= x - floor(x);
 		if (remainder > 0.4 && remainder < 0.6) {
@@ -261,20 +343,20 @@
 	}
 }
 
-void BLF_size(int size, int dpi)
+void BLF_size(int fontid, int size, int dpi)
 {
 	FontBLF *font;
 
-	font= global_font[global_font_cur];
+	font= BLF_get(fontid);
 	if (font)
 		blf_font_size(font, size, dpi);
 }
 
-void BLF_blur(int size)
+void BLF_blur(int fontid, int size)
 {
 	FontBLF *font;
 	
-	font= global_font[global_font_cur];
+	font= BLF_get(fontid);
 	if (font)
 		font->blur= size;
 }
@@ -295,38 +377,21 @@
 		return;
 	}
 
-	font= global_font[global_font_cur];
-	if (font) {
-		old_font= global_font_cur;
-		old_point= font->size;
-		old_dpi= font->dpi;
-	}
-
-	global_font_cur= global_font_default;
-	BLF_size(global_font_points, global_font_dpi);
-	BLF_position(x, y, z);
-	BLF_draw(str);
-
-	/* restore the old font. */
-	if (font) {
-		global_font_cur= old_font;
-		BLF_size(old_point, old_dpi);
-	}
+	BLF_size(global_font_default, global_font_points, global_font_dpi);
+	BLF_position(global_font_default, x, y, z);
+	BLF_draw(global_font_default, str);
 }
 
-void BLF_default_rotation(float angle)
+void BLF_rotation_default(float angle)
 {
-	
-	if (global_font_default>=0) {
-		global_font[global_font_default]->angle= angle;
-		if(angle)
-			global_font[global_font_default]->flags |= BLF_ROTATION;
-		else
-			global_font[global_font_default]->flags &= ~BLF_ROTATION;
-	}
+	FontBLF *font;
+
+	font= BLF_get(global_font_default);
+	if (font)
+		font->angle= angle;
 }
 
-void BLF_draw(char *str)
+void BLF_draw(int fontid, char *str)
 {
 	FontBLF *font;
 
@@ -334,7 +399,7 @@
 	 * The pixmap alignment hack is handle
 	 * in BLF_position (old ui_rasterpos_safe).
 	 */
-	font= global_font[global_font_cur];
+	font= BLF_get(fontid);
 	if (font) {
 		glEnable(GL_BLEND);
 		glEnable(GL_TEXTURE_2D);
@@ -355,39 +420,39 @@
 	}
 }
 
-void BLF_boundbox(char *str, rctf *box)
+void BLF_boundbox(int fontid, char *str, rctf *box)
 {
 	FontBLF *font;
 
-	font= global_font[global_font_cur];
+	font= BLF_get(fontid);
 	if (font)

@@ Diff output truncated at 10240 characters. @@




More information about the Bf-blender-cvs mailing list