Remove statistics profiler

Signed-off-by: Jeremy Ong <jcong@amazon.com>
This commit is contained in:
Jeremy Ong
2021-08-17 14:51:29 -06:00
parent df9b4d4a2f
commit a5f072f7a9
28 changed files with 41 additions and 2332 deletions
+2 -2
View File
@@ -1255,7 +1255,7 @@ namespace UnitTest
int ChildFunction1(int input)
{
AZ_PROFILE_SCOPE(System, "Child1");
AZ_PROFILE_SCOPE(AzCore, "Child1");
int result = 5;
for (int i = 0; i < 10000; ++i)
{
@@ -1266,7 +1266,7 @@ namespace UnitTest
int Profile1(int numIterations)
{
AZ_PROFILE_SCOPE(System, "Custom name");
AZ_PROFILE_SCOPE(AzCore, "Custom name");
int result = 0;
for (int i = 0; i < numIterations; ++i)
{