blob: e1dc0ec232077590ecd8207e8e23518ea56152fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
// Initializes the FPS counter.
void InitFPSCounter();
// Called when a frame is rendered. Returns the value to be displayed on
// screen as the FPS counter (updated every second).
int UpdateFPSCounter();
|