mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
console: add qemu_pixman_linebuf_copy
Helper function for copying data from linebuf to framebuffer using pixman, possibly converting in case src and dst formats differ. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
@ -42,6 +42,8 @@ pixman_image_t *qemu_pixman_linebuf_create(pixman_format_code_t format,
|
||||
int width);
|
||||
void qemu_pixman_linebuf_fill(pixman_image_t *linebuf, pixman_image_t *fb,
|
||||
int width, int x, int y);
|
||||
void qemu_pixman_linebuf_copy(pixman_image_t *fb, int width, int x, int y,
|
||||
pixman_image_t *linebuf);
|
||||
pixman_image_t *qemu_pixman_mirror_create(pixman_format_code_t format,
|
||||
pixman_image_t *image);
|
||||
void qemu_pixman_image_unref(pixman_image_t *image);
|
||||
|
Reference in New Issue
Block a user