mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00

There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: Patches in Pending state: 41 (57%) With recent change to enable patch-status not only for all .patch files in oe-core, but for all recipes from oe-core: https://git.openembedded.org/openembedded-core/commit/?id=61a881fdbe8b5a21c6276b8a5d06cc30486b1eb3 this causes bluez5 do_patch failures as reported in: https://lists.openembedded.org/g/openembedded-core/message/183177 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 5c0fb637f8b1286da19b904c7be1692a4aa61244 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Sat, 6 Feb 2016 11:11:41 -0800
|
|
Subject: [PATCH] initialize front back wayland buffers
|
|
|
|
origins from metrological wayland support
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
interface/khronos/egl/egl_client_surface.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/interface/khronos/egl/egl_client_surface.c b/interface/khronos/egl/egl_client_surface.c
|
|
index 1f923d9..9a9582c 100644
|
|
--- a/interface/khronos/egl/egl_client_surface.c
|
|
+++ b/interface/khronos/egl/egl_client_surface.c
|
|
@@ -401,11 +401,14 @@ EGL_SURFACE_T *egl_surface_create(
|
|
#ifdef BUILD_WAYLAND
|
|
if (type == WINDOW && wl_display) {
|
|
surface->wl_egl_window = (struct wl_egl_window*)win;
|
|
+ surface->front_wl_buffer = NULL;
|
|
surface->back_wl_buffer = allocate_wl_buffer(
|
|
surface->wl_egl_window, color);
|
|
resource = surface->back_wl_buffer->resource;
|
|
} else {
|
|
surface->wl_egl_window = NULL;
|
|
+ surface->front_wl_buffer = NULL;
|
|
+ surface->back_wl_buffer = NULL;
|
|
resource = DISPMANX_NO_HANDLE;
|
|
}
|
|
#endif
|