summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/PerfQueryBase.cpp
blob: 76bec0ef4643dec6b5873feb5872375bb6581f7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2012 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#include "VideoCommon/PerfQueryBase.h"
#include "VideoCommon/VideoConfig.h"

PerfQueryBase* g_perf_query = nullptr;

bool PerfQueryBase::ShouldEmulate()
{
	return g_ActiveConfig.bPerfQueriesEnable;
}