mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:59: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>
41 lines
1.6 KiB
Diff
41 lines
1.6 KiB
Diff
From 4a3e515d3ea7ff0fc4063b9677b056af4ee7a3f6 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Wed, 2 Dec 2020 14:28:01 -0800
|
|
Subject: [PATCH] userland: Sync needed defines for weston build
|
|
|
|
eglext.h from userland is not sufficient to compile latest weston,
|
|
therefore import needed defines and typedefs from latest mesa
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
Upstream-Status: Pending
|
|
|
|
interface/khronos/include/EGL/eglext.h | 14 ++++++++++++++
|
|
1 file changed, 14 insertions(+)
|
|
|
|
diff --git a/interface/khronos/include/EGL/eglext.h b/interface/khronos/include/EGL/eglext.h
|
|
index 6842bf9..7118e92 100755
|
|
--- a/interface/khronos/include/EGL/eglext.h
|
|
+++ b/interface/khronos/include/EGL/eglext.h
|
|
@@ -225,6 +225,20 @@ typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYWAYLANDBUFFERWL) (EGLDisplay dpy, st
|
|
|
|
#endif
|
|
|
|
+typedef void* EGLSyncKHR;
|
|
+typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETDAMAGEREGIONKHRPROC) (EGLDisplay dpy, EGLSurface surface, EGLint *rects, EGLint n_rects);
|
|
+typedef EGLint (EGLAPIENTRYP PFNEGLWAITSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags);
|
|
+#ifndef EGL_ANDROID_native_fence_sync
|
|
+#define EGL_ANDROID_native_fence_sync 1
|
|
+#define EGL_SYNC_NATIVE_FENCE_ANDROID 0x3144
|
|
+#define EGL_SYNC_NATIVE_FENCE_FD_ANDROID 0x3145
|
|
+#define EGL_SYNC_NATIVE_FENCE_SIGNALED_ANDROID 0x3146
|
|
+#define EGL_NO_NATIVE_FENCE_FD_ANDROID -1
|
|
+typedef EGLint (EGLAPIENTRYP PFNEGLDUPNATIVEFENCEFDANDROIDPROC) (EGLDisplay dpy, EGLSyncKHR sync);
|
|
+#ifdef EGL_EGLEXT_PROTOTYPES
|
|
+EGLAPI EGLint EGLAPIENTRY eglDupNativeFenceFDANDROID (EGLDisplay dpy, EGLSyncKHR sync);
|
|
+#endif
|
|
+#endif /* EGL_ANDROID_native_fence_sync */
|
|
|
|
#ifdef __cplusplus
|
|
}
|