sna: Perform the last threaded composite operation directly

The point of the refactor was to execute the last stage of the composite
in the master thread, so do so.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2013-01-24 22:25:46 +00:00
parent 326dcd75f2
commit 427b7311fe
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ void sna_image_composite(pixman_op_t op,
data[n].dst_y = y;
data[n].height = dy;
sna_threads_run(thread_composite, &data[n]);
thread_composite(&data[n]);
sna_threads_wait();
}