Files
dolphin/Source/Core/VideoCommon/PerfQueryBase.cpp
T

15 lines
337 B
C++
Raw Normal View History

2015-05-24 06:32:32 +02:00
// Copyright 2012 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
2014-02-17 05:18:15 -05:00
#include "VideoCommon/PerfQueryBase.h"
#include <memory>
2014-02-17 05:18:15 -05:00
#include "VideoCommon/VideoConfig.h"
2012-06-17 13:58:29 +02:00
std::unique_ptr<PerfQueryBase> g_perf_query;
bool PerfQueryBase::ShouldEmulate()
{
return g_ActiveConfig.bPerfQueriesEnable;
}