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

19 lines
334 B
C++
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// 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));
}