diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-10-08 09:40:34 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-10-08 09:40:34 +0100 |
commit | 082c08789cf9a8c0cc2bf44d0fee579b96c0798f (patch) | |
tree | 85e06a4aeacef4cc54dd8dccad088d910d8be3c7 /src/sna/sna_threads.c | |
parent | 06a8ad9690590a605b1564012d062b98c60546a6 (diff) |
sna: Rework the num_threads refinement to avoid the division
We can replace the division by a multiplication.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/sna_threads.c')
-rw-r--r-- | src/sna/sna_threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/sna_threads.c b/src/sna/sna_threads.c index 3e10e5a4..333b7ebd 100644 --- a/src/sna/sna_threads.c +++ b/src/sna/sna_threads.c @@ -274,7 +274,7 @@ void sna_image_composite(pixman_op_t op, y = dst_y; dy = (height + num_threads - 1) / num_threads; - num_threads = (height + dy - 1) / dy; + num_threads -= (num_threads-1) * dy >= height; data[0].op = op; data[0].src = src; |