2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 06:29:41 +03:00
|
|
|
// Refer to the license.txt file included.
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2014-09-19 07:17:41 +03:00
|
|
|
#include <cstring>
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "VideoBackends/Software/SWStatistics.h"
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2011-02-03 21:55:30 +02:00
|
|
|
SWStatistics swstats;
|
2010-06-09 04:37:08 +03:00
|
|
|
|
2011-02-03 21:55:30 +02:00
|
|
|
SWStatistics::SWStatistics()
|
2010-06-09 04:37:08 +03:00
|
|
|
{
|
2013-04-14 06:54:02 +03:00
|
|
|
frameCount = 0;
|
2010-06-09 04:37:08 +03:00
|
|
|
}
|
|
|
|
|
2011-02-03 21:55:30 +02:00
|
|
|
void SWStatistics::ResetFrame()
|
2010-06-09 04:37:08 +03:00
|
|
|
{
|
|
|
|
memset(&thisFrame, 0, sizeof(ThisFrame));
|
|
|
|
}
|