summaryrefslogtreecommitdiffstats
path: root/meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch
diff options
context:
space:
mode:
authorJoel Winarske <joel.winarske@gmail.com>2024-06-28 13:13:20 -0700
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2024-07-09 09:34:09 +0000
commit1696e85d2d81cc42532bc3968eb8db8c979e59fb (patch)
tree5f6205f1a8fc7dba73a402a3572ba3e81571d183 /meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch
parent8933d6c6b94f3b395167456ea9f8917a4ecb3bd4 (diff)
flutter-auto v2
-remove patches as upstream has picked them up -update desktop-auto.json to v2.0 baseline -mask libcamera log message when running flutter-auto. flutter-auto handles libcamera messages directly. -add xdg-shell-app-id to service Bug-AGL: SPEC-5193 Change-Id: Idf054a921b055774262ea0c760ec134ba70d8128 Signed-off-by: Joel Winarske <joel.winarske@gmail.com> Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl/+/30048 ci-image-boot-test: Jenkins Job builder account ci-image-build: Jenkins Job builder account Reviewed-by: Marius Vlad <marius.vlad@collabora.com> Tested-by: Jenkins Job builder account Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> (cherry picked from commit 8d6e6f806f20c7848565e52132791ac14091472b) Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl/+/30123
Diffstat (limited to 'meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch')
-rw-r--r--meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch b/meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch
deleted file mode 100644
index f0cf9ddb3..000000000
--- a/meta-agl-flutter/recipes-graphics/toyota/files/0002-activation_area-Allow-x-and-y-values-be-zero-for-the.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 641ca7ca26c1bfc11e7d0c0f30b731f53467bf1f Mon Sep 17 00:00:00 2001
-From: Marius Vlad <marius.vlad@collabora.com>
-Date: Thu, 28 Dec 2023 20:28:12 +0200
-Subject: [PATCH 2/2] activation_area: Allow x and y values be zero for the
- activation area
-
-Bug-AGL: SPEC-5038
-Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
----
- shell/wayland/window.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/shell/wayland/window.cc b/shell/wayland/window.cc
-index f816e58..929b9af 100644
---- a/shell/wayland/window.cc
-+++ b/shell/wayland/window.cc
-@@ -100,7 +100,7 @@ WaylandWindow::WaylandWindow(size_t index,
- break;
- case WINDOW_BG:
- m_display->AglShellDoBackground(m_base_surface, 0);
-- if (m_activation_area.x > 0 && m_activation_area.y > 0)
-+ if (m_activation_area.x >= 0 && m_activation_area.y >= 0)
- m_display->AglShellDoSetupActivationArea(
- m_activation_area.x, m_activation_area.y, m_activation_area.width,
- m_activation_area.height, 0);
---
-2.35.1
-