dungeon_crawler

diff prototype/src/cfg.h @ 60:aa86119e3295

added multipass deferred
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 25 Sep 2012 06:19:37 +0300
parents d52711f2b9a1
children
line diff
     1.1 --- a/prototype/src/cfg.h	Fri Sep 21 05:28:45 2012 +0300
     1.2 +++ b/prototype/src/cfg.h	Tue Sep 25 06:19:37 2012 +0300
     1.3 @@ -1,13 +1,16 @@
     1.4  #ifndef CFG_H_
     1.5  #define CFG_H_
     1.6  
     1.7 +
     1.8 +
     1.9  extern class Config {
    1.10  public:
    1.11  	int width, height;
    1.12  	bool stereo;
    1.13  	bool sound;
    1.14  	const char *level_file, *tileset_file;
    1.15 -	bool use_deferred;
    1.16 +
    1.17 +	enum class Renderer { any, mrt, multipass, fwd } rend;
    1.18  
    1.19  	Config();
    1.20