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; };