fixed incorrect checking of the existence of GLX_EXT_swap_control and friends
[demo_prior] / src / opt.h
1 #ifndef OPT_H_
2 #define OPT_H_
3
4 struct options {
5         int width, height;
6         int fullscr;
7         int music;
8         int srgb, msaa;
9         int vsync;
10 };
11
12 extern struct options opt;
13
14 int parse_args(int argc, char **argv);
15 int read_cfg(const char *fname);
16
17 #endif  /* OPT_H_ */