Files
dolphin/Source/Core/VideoBackends/Software/SWStatistics.cpp
T

19 lines
333 B
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2010-06-09 01:37:08 +00:00
#include <cstring>
2014-02-17 05:18:15 -05:00
#include "VideoBackends/Software/SWStatistics.h"
2010-06-09 01:37:08 +00:00
SWStatistics swstats;
2010-06-09 01:37:08 +00:00
SWStatistics::SWStatistics()
2010-06-09 01:37:08 +00:00
{
frameCount = 0;
2010-06-09 01:37:08 +00:00
}
void SWStatistics::ResetFrame()
2010-06-09 01:37:08 +00:00
{
memset(&thisFrame, 0, sizeof(ThisFrame));
}