]> git.sesse.net Git - nageru/blob - flags.h
Add an option to not flush PBOs explicitly; causes apitrace not to store the data...
[nageru] / flags.h
1 #ifndef _FLAGS_H
2 #define _FLAGS_H
3
4 #include <string>
5
6 struct Flags {
7         int num_cards = 2;
8         std::string va_display;
9         bool uncompressed_video_to_http = false;
10         std::string theme_filename = "theme.lua";
11         bool flat_audio = false;
12         bool flush_pbos = true;
13 };
14 extern Flags global_flags;
15
16 void parse_flags(int argc, char * const argv[]);
17
18 #endif  // !defined(_FLAGS_H)