From 1f291a6a5b25d8a9bcab6609cf17984209e66b59 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Thu, 7 Jan 2016 15:55:02 +0900 Subject: [PATCH] Evas filters: Run immediately in async mode (flush vs. enqueue) --- src/lib/evas/filters/evas_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/evas/filters/evas_filter.c b/src/lib/evas/filters/evas_filter.c index f343aa938f..73dc04763f 100644 --- a/src/lib/evas/filters/evas_filter.c +++ b/src/lib/evas/filters/evas_filter.c @@ -1676,7 +1676,7 @@ evas_filter_run(Evas_Filter_Context *ctx) if (ctx->async) { - evas_thread_cmd_enqueue(_filter_thread_run_cb, ctx); + evas_thread_queue_flush(_filter_thread_run_cb, ctx); return EINA_TRUE; }