remove the telemetry except from the renderers as I'm not being capable to remove it from there

This commit is contained in:
Miguel 2024-03-27 16:17:58 +01:00 committed by Reg Tiangha
parent a442389a60
commit bd14afd9a0
No known key found for this signature in database
GPG key ID: 00D437798B1C2970
20 changed files with 12 additions and 886 deletions

View file

@ -72,7 +72,6 @@ class AppLoader;
namespace Core {
class ARM_Interface;
class TelemetrySession;
class ExclusiveMonitor;
class Timing;
@ -165,14 +164,6 @@ public:
return is_powered_on;
}
/**
* Returns a reference to the telemetry session for this emulation session.
* @returns Reference to the telemetry session.
*/
[[nodiscard]] Core::TelemetrySession& TelemetrySession() const {
return *telemetry_session;
}
/// Prepare the core emulation for a reschedule
void PrepareReschedule();
@ -385,9 +376,6 @@ private:
/// When true, signals that a reschedule should happen
bool reschedule_pending{};
/// Telemetry session for this emulation session
std::unique_ptr<Core::TelemetrySession> telemetry_session;
std::unique_ptr<VideoCore::GPU> gpu;
/// Service manager
@ -470,3 +458,4 @@ private:
} // namespace Core
BOOST_CLASS_VERSION(Core::System, 1)