diff mbox series

[PULL,4/5] include/ui/console.h: Delete is_surface_bgr()

Message ID 20210323153616.873822-5-kraxel@redhat.com
State Accepted
Commit 181b4bbf610c9126f499e2c516fb9b2a880468b8
Headers show
Series None | expand

Commit Message

Gerd Hoffmann March 23, 2021, 3:36 p.m. UTC
From: Peter Maydell <peter.maydell@linaro.org>


The function is_surface_bgr() is no longer used anywhere,
so we can delete it.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

Message-Id: <20210314163927.1184-1-peter.maydell@linaro.org>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>

---
 include/ui/console.h | 10 ----------
 1 file changed, 10 deletions(-)

-- 
2.30.2
diff mbox series

Patch

diff --git a/include/ui/console.h b/include/ui/console.h
index 2714038a0fae..ca3c7af6a6c8 100644
--- a/include/ui/console.h
+++ b/include/ui/console.h
@@ -267,16 +267,6 @@  PixelFormat qemu_default_pixelformat(int bpp);
 DisplaySurface *qemu_create_displaysurface(int width, int height);
 void qemu_free_displaysurface(DisplaySurface *surface);
 
-static inline int is_surface_bgr(DisplaySurface *surface)
-{
-    if (PIXMAN_FORMAT_BPP(surface->format) == 32 &&
-        PIXMAN_FORMAT_TYPE(surface->format) == PIXMAN_TYPE_ABGR) {
-        return 1;
-    } else {
-        return 0;
-    }
-}
-
 static inline int is_buffer_shared(DisplaySurface *surface)
 {
     return !(surface->flags & QEMU_ALLOCATED_FLAG);