diff options
author | Joel Winarske <joel.winarske@gmail.com> | 2023-11-02 15:45:57 -0700 |
---|---|---|
committer | Joel Winarske <joel.winarske@gmail.com> | 2023-11-02 15:45:57 -0700 |
commit | 832fb66cc1dad280410e828547e97315741f085d (patch) | |
tree | a4a2cd33189f85e11c8cd344781d83b8c7ffcaab | |
parent | 68ca7f2f0ee0065eed55665b13234d81cfd26087 (diff) |
Remove unused files
-bbappends have been moved upstream
Signed-off-by: Joel Winarske <joel.winarske@gmail.com>
Change-Id: I7d65ba7b477b67a3e9601633bf4a09f4532fc0ce
3 files changed, 0 insertions, 39 deletions
diff --git a/meta-agl-flutter/recipes-graphics/toyota/files/0001-The-ivi-homescreen-is-using-eglGetPlatformDisplay-di.patch b/meta-agl-flutter/recipes-graphics/toyota/files/0001-The-ivi-homescreen-is-using-eglGetPlatformDisplay-di.patch deleted file mode 100644 index 58e920e4..00000000 --- a/meta-agl-flutter/recipes-graphics/toyota/files/0001-The-ivi-homescreen-is-using-eglGetPlatformDisplay-di.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 29d93f244f5483062f163c366d31f6a1da5be05e Mon Sep 17 00:00:00 2001 -From: Joel Winarske <joel.winarske@gmail.com> -Date: Tue, 6 Jun 2023 14:39:17 -0700 -Subject: [PATCH] The ivi-homescreen is using eglGetPlatformDisplay directly - that possible to use in EGL version is 1.5 or greater. On the other hand - R-CarH3/M3 is not supporting EGL version is 1.5, only a EGL version is 1.4. - This situation cause build error in R-Car H3/M3. - -This patch fix that build error. - -Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> ---- - shell/view/compositor_surface.cc | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/shell/view/compositor_surface.cc b/shell/view/compositor_surface.cc -index 51b13c5..7991c3f 100644 ---- a/shell/view/compositor_surface.cc -+++ b/shell/view/compositor_surface.cc -@@ -57,8 +57,7 @@ CompositorSurface::CompositorSurface( - auto parent_surface = window->GetBaseSurface(); - - if (type == CompositorSurface::egl) { -- m_wl.egl_display = eglGetPlatformDisplay(EGL_PLATFORM_WAYLAND_KHR, -- display->GetDisplay(), nullptr); -+ m_wl.egl_display = eglGetDisplay((NativeDisplayType)display->GetDisplay()); - m_wl.egl_window = wl_egl_window_create(m_wl.surface, width, height); - assert(m_wl.egl_display); - assert(m_wl.egl_window); --- -2.41.0 - diff --git a/meta-agl-flutter/recipes-graphics/toyota/flutter-auto_%.bbappend b/meta-agl-flutter/recipes-graphics/toyota/flutter-auto_%.bbappend deleted file mode 100644 index dbc82bc3..00000000 --- a/meta-agl-flutter/recipes-graphics/toyota/flutter-auto_%.bbappend +++ /dev/null @@ -1 +0,0 @@ -require ${@bb.utils.contains('AGL_FEATURES', 'agl-flutter', 'flutter-auto_aglflutter.inc', '', d)} diff --git a/meta-agl-flutter/recipes-graphics/toyota/flutter-auto_aglflutter.inc b/meta-agl-flutter/recipes-graphics/toyota/flutter-auto_aglflutter.inc deleted file mode 100644 index 869b3a4f..00000000 --- a/meta-agl-flutter/recipes-graphics/toyota/flutter-auto_aglflutter.inc +++ /dev/null @@ -1,6 +0,0 @@ -FILESEXTRAPATHS:prepend := "${THISDIR}/files:" - -SRC_URI += "file://0001-The-ivi-homescreen-is-using-eglGetPlatformDisplay-di.patch" - -# NOTE: Cannot use += here due to ??= use in the recipe -PACKAGECONFIG:append = " client-agl" |