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