[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 15/23] ui/gl: opengl doesn't require PIXMAN
From: |
marcandre . lureau |
Subject: |
[PATCH v6 15/23] ui/gl: opengl doesn't require PIXMAN |
Date: |
Wed, 25 Oct 2023 23:08:09 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
The QEMU fallback covers the requirements. We still need the flags of
header inclusion with CONFIG_PIXMAN.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
ui/meson.build | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/meson.build b/ui/meson.build
index 3085e10a72..7c99613950 100644
--- a/ui/meson.build
+++ b/ui/meson.build
@@ -60,8 +60,8 @@ endif
system_ss.add(opengl)
if opengl.found()
opengl_ss = ss.source_set()
- opengl_ss.add(gbm)
- opengl_ss.add(when: [opengl, pixman],
+ opengl_ss.add(gbm, pixman)
+ opengl_ss.add(when: [opengl],
if_true: files('shader.c', 'console-gl.c', 'egl-helpers.c',
'egl-context.c'))
ui_modules += {'opengl' : opengl_ss}
endif
--
2.41.0
- Re: [PATCH v6 09/23] ui/console: allow to override the default VC, (continued)
[PATCH v6 13/23] ui/console: when PIXMAN is unavailable, don't draw placeholder msg, marcandre . lureau, 2023/10/25
[PATCH v6 16/23] ui/vnc: VNC requires PIXMAN, marcandre . lureau, 2023/10/25
[PATCH v6 17/23] ui/spice: SPICE/QXL requires PIXMAN, marcandre . lureau, 2023/10/25
[PATCH v6 18/23] ui/gtk: -display gtk requires PIXMAN, marcandre . lureau, 2023/10/25
[PATCH v6 19/23] ui/dbus: do not require PIXMAN, marcandre . lureau, 2023/10/25