Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2007-01-21 18:10:05 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2007-01-21 18:10:05 (GMT)
commit7bfc69b4adb73bc5f79b708729b08807f1986c11 (patch)
tree3836f512b9757d7a8ec3c0cb876d4c0ccf8ea2d4 /backend
parent1992b36e18079313b8ea19193776355afbd348d2 (diff)
Do not acquire fontconfig lock in impress backend, since it is using the
2007-01-21 Carlos Garcia Campos <carlosgc@gnome.org> * backend/impress/impress-document.c: (impress_document_render_pixbuf): Do not acquire fontconfig lock in impress backend, since it is using the main loop for rendering. svn path=/trunk/; revision=2242
Diffstat (limited to 'backend')
-rw-r--r--backend/impress/impress-document.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/backend/impress/impress-document.c b/backend/impress/impress-document.c
index 3ea993d..7459dab 100644
--- a/backend/impress/impress-document.c
+++ b/backend/impress/impress-document.c
@@ -357,6 +357,7 @@ imp_render_get_from_drawable (ImpressDocument *impress_document)
0, 0,
0, 0,
PAGE_WIDTH, PAGE_HEIGHT);
+
g_cond_broadcast (impress_document->cond);
return FALSE;
}
@@ -376,10 +377,12 @@ impress_document_render_pixbuf (EvDocument *document,
g_mutex_lock (impress_document->mutex);
impress_document->cond = g_cond_new ();
+ ev_document_fc_mutex_unlock ();
g_idle_add ((GSourceFunc) imp_render_get_from_drawable, impress_document);
-
g_cond_wait (impress_document->cond, impress_document->mutex);
g_cond_free (impress_document->cond);
+ ev_document_fc_mutex_lock ();
+
g_mutex_unlock (impress_document->mutex);
scaled_pixbuf = gdk_pixbuf_scale_simple (impress_document->pixbuf,