diff options
author | Joel Winarske <joel.winarske@gmail.com> | 2023-10-17 10:35:36 -0700 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2023-10-18 16:33:26 -0400 |
commit | 15df7f399d57729b6583d24cecf0e9d7add75a03 (patch) | |
tree | 64102eeea404a326558d497dd7208328cc22b69f /meta-agl-flutter/recipes-graphics/toyota/files/0001-shell-wayland-display-Handle-flags-as-bitfield-entri.patch | |
parent | d9670d5543f8a9444ab01d39ad8a95bc1aee3df3 (diff) |
Flutter 3.13.2 update
-README update
-workspace-automation configs
* _global.json - move to 3.13.2
* _repos.json - remove wonderous, update commits, add depot_tools
* flutter-engine.json - flutter engine local build (optional)
* desktop-auto.json - remove clang from desktop-auto config
-flutter-engine recipe
* remove bbappend patches
-flutter-auto
* update agl-shell PACKAGECONFIG addition
* remove patches
upstream picked up 0001-shell-wayland-display-Handle-flags-as-bitfield-entri.patch
dropped 0001-Add-optional-agl_shell-plugin.patch
Bug-AGL: SPEC-4936
Signed-off-by: Joel Winarske <joel.winarske@gmail.com>
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: Iddd7c0f735abb4d114ba89a8bf0e49977b469150
Diffstat (limited to 'meta-agl-flutter/recipes-graphics/toyota/files/0001-shell-wayland-display-Handle-flags-as-bitfield-entri.patch')
-rw-r--r-- | meta-agl-flutter/recipes-graphics/toyota/files/0001-shell-wayland-display-Handle-flags-as-bitfield-entri.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta-agl-flutter/recipes-graphics/toyota/files/0001-shell-wayland-display-Handle-flags-as-bitfield-entri.patch b/meta-agl-flutter/recipes-graphics/toyota/files/0001-shell-wayland-display-Handle-flags-as-bitfield-entri.patch deleted file mode 100644 index 6970388c..00000000 --- a/meta-agl-flutter/recipes-graphics/toyota/files/0001-shell-wayland-display-Handle-flags-as-bitfield-entri.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 357634ceae6d730131b26bc3e72b4cf0b3e902ad Mon Sep 17 00:00:00 2001 -From: Marius Vlad <marius.vlad@collabora.com> -Date: Mon, 19 Jun 2023 10:34:44 +0300 -Subject: [PATCH] shell/wayland/display: Handle flags as bitfield entries - -We can have preferred and current mode or'ed in the same time, so we -can't really check just for current mode. Make sure we do get a valid -width/height for the outputs to avoid going further. - -Bug-AGL: SPEC-4841 -Signed-off-by: Marius Vlad <marius.vlad@collabora.com> ---- - shell/wayland/display.cc | 4 +++- - 1 file changed, 3 insertions(+), 1 deletion(-) - -diff --git a/shell/wayland/display.cc b/shell/wayland/display.cc -index 434dd05..5ace67c 100644 ---- a/shell/wayland/display.cc -+++ b/shell/wayland/display.cc -@@ -258,12 +258,14 @@ void Display::display_handle_mode(void* data, - (void)flags; - auto* oi = static_cast<output_info_t*>(data); - -- if (flags == WL_OUTPUT_MODE_CURRENT) { -+ if ((flags & WL_OUTPUT_MODE_CURRENT) == WL_OUTPUT_MODE_CURRENT) { - oi->height = static_cast<unsigned int>(height); - oi->width = static_cast<unsigned int>(width); - oi->refresh_rate = refresh; - } - -+ assert(oi->height && oi->width); -+ - FML_DLOG(INFO) << "Video mode: " << width << " x " << height << " @ " - << (refresh > 1000 ? refresh / 1000.0 : (double)refresh) - << " Hz"; --- -2.35.1 - |