From 7ab6ebb754e987ae22675779486adf887600f14d Mon Sep 17 00:00:00 2001 From: lizzie Date: Sat, 12 Jul 2025 04:16:00 +0100 Subject: [PATCH] [android] no shuffle --- src/video_core/host1x/host1x.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/video_core/host1x/host1x.h b/src/video_core/host1x/host1x.h index 0baec44b9c..0030355c70 100644 --- a/src/video_core/host1x/host1x.h +++ b/src/video_core/host1x/host1x.h @@ -197,13 +197,13 @@ public: } private: + Core::System& system; SyncpointManager syncpoint_manager; Tegra::MaxwellDeviceMemoryManager memory_manager; Tegra::MemoryManager gmmu_manager; + std::unique_ptr> allocator; FrameQueue frame_queue; - std::unordered_map> devices; //+12 - std::unique_ptr> allocator; //8 - Core::System& system; //8 + std::unordered_map> devices; // std::once_flag nvdec_first_init; // std::once_flag vic_first_init; };