summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiarhei Siamashka <siarhei.siamashka@gmail.com>2013-09-05 05:41:26 +0300
committerSiarhei Siamashka <siarhei.siamashka@gmail.com>2013-09-05 05:46:33 +0300
commit1fa8c0ba0a7d8ea23c61649624e5ce9a818a2618 (patch)
tree41b0b686b63af1f21dc20264f333056149e58dae
parentec3c89b1cba40c6a976aed5302dceb6020a6ba91 (diff)
test: benchmark operator SRC instead of OVER in scaling-benchssse3-bilinear-fast-path-test
-rw-r--r--test/scaling-bench.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scaling-bench.c b/test/scaling-bench.c
index 365e798..9701ee2 100644
--- a/test/scaling-bench.c
+++ b/test/scaling-bench.c
@@ -61,7 +61,7 @@ main ()
{
t1 = gettime();
pixman_image_composite (
- PIXMAN_OP_OVER, src, NULL, dest,
+ PIXMAN_OP_SRC, src, NULL, dest,
scale, scale, 0, 0, 0, 0, dest_width, dest_height);
t2 = gettime();
if (t < 0 || t2 - t1 < t)