mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 08:07:45 +00:00
Create PerformanceSampleAggregator
This commit is contained in:
parent
41b0c09486
commit
d78e6fe165
5 changed files with 24 additions and 0 deletions
|
@ -484,6 +484,8 @@ add_library(core
|
|||
PatchEngine.cpp
|
||||
PatchEngine.h
|
||||
PerformanceSample.h
|
||||
PerformanceSampleAggregator.cpp
|
||||
PerformanceSampleAggregator.h
|
||||
PowerPC/BreakPoints.cpp
|
||||
PowerPC/BreakPoints.h
|
||||
PowerPC/CachedInterpreter/CachedInterpreter_Disassembler.cpp
|
||||
|
|
|
@ -29,14 +29,18 @@
|
|||
#include "Common/Random.h"
|
||||
#include "Common/Timer.h"
|
||||
#include "Common/Version.h"
|
||||
|
||||
#include "Core/Config/MainSettings.h"
|
||||
#include "Core/ConfigManager.h"
|
||||
#include "Core/HW/GCPad.h"
|
||||
#include "Core/Movie.h"
|
||||
#include "Core/NetPlayProto.h"
|
||||
#include "Core/PerformanceSampleAggregator.h"
|
||||
|
||||
#include "Core/System.h"
|
||||
#include "InputCommon/GCAdapter.h"
|
||||
#include "InputCommon/InputConfig.h"
|
||||
|
||||
#include "VideoCommon/VideoBackendBase.h"
|
||||
#include "VideoCommon/VideoConfig.h"
|
||||
|
||||
|
|
5
Source/Core/Core/PerformanceSampleAggregator.cpp
Normal file
5
Source/Core/Core/PerformanceSampleAggregator.cpp
Normal file
|
@ -0,0 +1,5 @@
|
|||
// Copyright 2021 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "Core/PerformanceSampleAggregator.h"
|
11
Source/Core/Core/PerformanceSampleAggregator.h
Normal file
11
Source/Core/Core/PerformanceSampleAggregator.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
// Copyright 2021 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
class PerformanceSampleAggregator
|
||||
{
|
||||
public:
|
||||
PerformanceSampleAggregator() = default;
|
||||
};
|
|
@ -438,6 +438,7 @@
|
|||
<ClInclude Include="Core\NetworkCaptureLogger.h" />
|
||||
<ClInclude Include="Core\PatchEngine.h" />
|
||||
<ClInclude Include="Core\PerformanceSample.h" />
|
||||
<ClInclude Include="Core\PerformanceSampleAggregator.h" />
|
||||
<ClInclude Include="Core\PowerPC\BreakPoints.h" />
|
||||
<ClInclude Include="Core\PowerPC\CachedInterpreter\CachedInterpreter.h" />
|
||||
<ClInclude Include="Core\PowerPC\CachedInterpreter\CachedInterpreterBlockCache.h" />
|
||||
|
@ -1106,6 +1107,7 @@
|
|||
<ClCompile Include="Core\NetPlayServer.cpp" />
|
||||
<ClCompile Include="Core\NetworkCaptureLogger.cpp" />
|
||||
<ClCompile Include="Core\PatchEngine.cpp" />
|
||||
<ClCompile Include="Core\PerformanceSampleAggregator.cpp" />
|
||||
<ClCompile Include="Core\PowerPC\BreakPoints.cpp" />
|
||||
<ClCompile Include="Core\PowerPC\CachedInterpreter\CachedInterpreter_Disassembler.cpp" />
|
||||
<ClCompile Include="Core\PowerPC\CachedInterpreter\CachedInterpreter.cpp" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue