From adcf89eb7ca1260f233a6e8a885504047e6eaf02 Mon Sep 17 00:00:00 2001 From: lizzie Date: Sun, 1 Feb 2026 04:34:43 +0000 Subject: [PATCH] oops not THAT one --- src/video_core/host1x/host1x.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/video_core/host1x/host1x.h b/src/video_core/host1x/host1x.h index 9df3e77ad4..d7534da23a 100644 --- a/src/video_core/host1x/host1x.h +++ b/src/video_core/host1x/host1x.h @@ -7,6 +7,7 @@ #pragma once #include +#include #include #include "common/common_types.h" @@ -133,7 +134,7 @@ private: if (it == map->second.end()) { return {}; } - + // TODO: this "mapped" prevents us from fully embracing ankerl return std::move(map->second.extract(it).mapped()); } @@ -141,7 +142,7 @@ private: std::mutex m_mutex{}; ankerl::unordered_dense::map>> m_presentation_order; - ankerl::unordered_dense::map> m_decode_order; + ankerl::unordered_dense::map> m_decode_order; static constexpr size_t MAX_PRESENT_QUEUE = 100; static constexpr size_t MAX_DECODE_MAP = 200;