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

14 lines
314 B
C++
Raw Normal View History

2015-05-24 06:32:32 +02:00
// Copyright 2012 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2015-05-24 06:32:32 +02:00
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;
}