1 |
william |
31 |
/* PCSX2 - PS2 Emulator for PCs |
2 |
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team |
3 |
|
|
* |
4 |
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms |
5 |
|
|
* of the GNU Lesser General Public License as published by the Free Software Found- |
6 |
|
|
* ation, either version 3 of the License, or (at your option) any later version. |
7 |
|
|
* |
8 |
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
9 |
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
10 |
|
|
* PURPOSE. See the GNU General Public License for more details. |
11 |
|
|
* |
12 |
|
|
* You should have received a copy of the GNU General Public License along with PCSX2. |
13 |
|
|
* If not, see <http://www.gnu.org/licenses/>. |
14 |
|
|
*/ |
15 |
|
|
|
16 |
|
|
#ifndef __STATS_H__ |
17 |
|
|
#define __STATS_H__ |
18 |
|
|
|
19 |
|
|
#include <time.h> |
20 |
|
|
|
21 |
|
|
struct Stats { |
22 |
|
|
time_t vsyncTime; |
23 |
|
|
u32 vsyncCount; |
24 |
|
|
u32 eeCycles; |
25 |
|
|
u32 eeSCycle; |
26 |
|
|
u32 iopCycles; |
27 |
|
|
u32 iopSCycle; |
28 |
|
|
|
29 |
|
|
u32 ticko; |
30 |
|
|
u32 framecount; |
31 |
|
|
u32 vu1count; |
32 |
|
|
u32 vif1count; |
33 |
|
|
}; |
34 |
|
|
|
35 |
|
|
Stats stats; |
36 |
|
|
|
37 |
|
|
void statsOpen(); |
38 |
|
|
void statsClose(); |
39 |
|
|
void statsVSync(); |
40 |
|
|
|
41 |
|
|
#endif /* __STATS_H__ */ |