-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathrtp.cpp
38 lines (29 loc) · 887 Bytes
/
rtp.cpp
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
#include <benchmark/benchmark.h>
#include "filefinder_rtp.h"
#include "output.h"
#include "player.h"
static void BM_InitRtp2k(benchmark::State& state) {
Output::SetLogLevel(LogLevel::Error);
Player::engine = Player::EngineRpg2k;
bool no_rtp_flag = false;
bool no_rtp_warning_flag = false;
for (auto _: state) {
FileFinder_RTP(no_rtp_flag, no_rtp_warning_flag, "");
}
Player::engine = Player::EngineNone;
Output::SetLogLevel(LogLevel::Debug);
}
BENCHMARK(BM_InitRtp2k);
static void BM_InitRtp2k3(benchmark::State& state) {
Output::SetLogLevel(LogLevel::Error);
Player::engine = Player::EngineRpg2k3;
bool no_rtp_flag = false;
bool no_rtp_warning_flag = false;
for (auto _: state) {
FileFinder_RTP(no_rtp_flag, no_rtp_warning_flag, "");
}
Player::engine = Player::EngineNone;
Output::SetLogLevel(LogLevel::Debug);
}
BENCHMARK(BM_InitRtp2k3);
BENCHMARK_MAIN();