blob: b6c387bd1c694956e0a6a389cb51d2a3caa2a8d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
* The ManaPlus Client
* Copyright (C) 2018-2019 The ManaPlus Developers
*
* This file is part of The ManaPlus Client.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UTILS_PERFSTAT_H
#define UTILS_PERFSTAT_H
#include "const/utils/perfstat.h"
#include "localconsts.h"
struct PerfStats final
{
PerfStats()
{
for (int f = 0; f < 16; f ++)
ticks[f] = -1;
}
A_DEFAULT_COPY(PerfStats)
int ticks[16];
};
namespace Perf
{
void init();
void nextFrame();
void selectWorstFrame();
int getTime(const size_t frameId,
const size_t counterId);
int getWorstTime(const size_t counterId);
} // namespace Perf
extern PerfStats perfStats[PERFSTAT_MAX];
extern size_t perfFrameId;
extern size_t prevPerfFrameId;
extern int *perfFrame;
extern PerfStats worstFrameStats;
extern int skipPerfFrames;
#define PERF_STAT(n) \
perfFrame[n] = tick_time
#define PERF_NEXTFRAME() \
Perf::nextFrame()
#endif // UTILS_PERFSTAT_H
|