|
|
|
@ -20,10 +20,8 @@
|
|
|
|
#include <AzCore/std/smart_ptr/intrusive_refcount.h>
|
|
|
|
#include <AzCore/std/smart_ptr/intrusive_refcount.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace AZ
|
|
|
|
namespace Profiler
|
|
|
|
{
|
|
|
|
{
|
|
|
|
namespace RHI
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
//! Thread local class to keep track of the thread's cached time regions.
|
|
|
|
//! Thread local class to keep track of the thread's cached time regions.
|
|
|
|
//! Each thread keeps track of its own time regions, which is communicated from the CpuProfilerImpl.
|
|
|
|
//! Each thread keeps track of its own time regions, which is communicated from the CpuProfilerImpl.
|
|
|
|
//! The CpuProfilerImpl is able to request the cached time regions from the CpuTimingLocalStorage.
|
|
|
|
//! The CpuProfilerImpl is able to request the cached time regions from the CpuTimingLocalStorage.
|
|
|
|
@ -184,5 +182,4 @@ namespace AZ
|
|
|
|
|
|
|
|
|
|
|
|
AZStd::vector<CpuProfilingStatisticsSerializerEntry> m_cpuProfilingStatisticsSerializerEntries;
|
|
|
|
AZStd::vector<CpuProfilingStatisticsSerializerEntry> m_cpuProfilingStatisticsSerializerEntries;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}; // namespace RHI
|
|
|
|
}; // namespace Profiler
|
|
|
|
}; // namespace AZ
|
|
|
|
|
|
|
|
|