summaryrefslogtreecommitdiff
path: root/qemu-pixman.c
diff options
context:
space:
mode:
Diffstat (limited to 'qemu-pixman.c')
-rw-r--r--qemu-pixman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-pixman.c b/qemu-pixman.c
index 79e175b8d0..e7263fb2bf 100644
--- a/qemu-pixman.c
+++ b/qemu-pixman.c
@@ -52,10 +52,10 @@ pixman_image_t *qemu_pixman_linebuf_create(pixman_format_code_t format,
}
void qemu_pixman_linebuf_fill(pixman_image_t *linebuf, pixman_image_t *fb,
- int width, int y)
+ int width, int x, int y)
{
pixman_image_composite(PIXMAN_OP_SRC, fb, NULL, linebuf,
- 0, y, 0, 0, 0, 0, width, 1);
+ x, y, 0, 0, 0, 0, width, 1);
}
pixman_image_t *qemu_pixman_mirror_create(pixman_format_code_t format,