aboutsummaryrefslogtreecommitdiff
path: root/ui/console.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2021-03-12 14:00:42 +0400
committerGerd Hoffmann <kraxel@redhat.com>2021-03-16 06:36:39 +0100
commiteb69442a06ea3be6af294c9db0e66e277a529a27 (patch)
tree1df0406cd5f4855d73f45e7179e6a82dfe72fc29 /ui/console.c
parent69cc8db44bdf7c9289e1fd1f695e01ec6132bf2b (diff)
downloadqemu-eb69442a06ea3be6af294c9db0e66e277a529a27.zip
qemu-eb69442a06ea3be6af294c9db0e66e277a529a27.tar.gz
qemu-eb69442a06ea3be6af294c9db0e66e277a529a27.tar.bz2
ui: fold qemu_alloc_display in only caller
A minor code simplification. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20210312100108.2706195-2-marcandre.lureau@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/console.c')
-rw-r--r--ui/console.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/ui/console.c b/ui/console.c
index c2fdf97..2de5f41 100644
--- a/ui/console.c
+++ b/ui/console.c
@@ -1386,26 +1386,18 @@ static QemuConsole *new_console(DisplayState *ds, console_type_t console_type,
return s;
}
-static void qemu_alloc_display(DisplaySurface *surface, int width, int height)
+DisplaySurface *qemu_create_displaysurface(int width, int height)
{
- qemu_pixman_image_unref(surface->image);
- surface->image = NULL;
+ DisplaySurface *surface = g_new0(DisplaySurface, 1);
+ trace_displaysurface_create(surface, width, height);
surface->format = PIXMAN_x8r8g8b8;
surface->image = pixman_image_create_bits(surface->format,
width, height,
NULL, width * 4);
assert(surface->image != NULL);
-
surface->flags = QEMU_ALLOCATED_FLAG;
-}
-DisplaySurface *qemu_create_displaysurface(int width, int height)
-{
- DisplaySurface *surface = g_new0(DisplaySurface, 1);
-
- trace_displaysurface_create(surface, width, height);
- qemu_alloc_display(surface, width, height);
return surface;
}