2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2012 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/PerfQueryBase.h"
|
|
|
|
#include "VideoCommon/VideoConfig.h"
|
2012-06-17 11:58:29 +00:00
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
PerfQueryBase* g_perf_query = nullptr;
|
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;
|
|
|
|
}
|