render_parameters.hpp
Go to the documentation of this file.
00001 
00002 #ifndef RENDER_PARAMETERS_HPP
00003 #define RENDER_PARAMETERS_HPP
00004 
00005 namespace cpe
00006 {
00007   struct render_parameters
00008   {
00010     render_parameters(const unsigned int& N_aa=1,const unsigned int& reflection_max=0,const bool& is_shading=true);
00011 
00013     unsigned int N_aa;
00014 
00016     unsigned int reflection_max;
00017 
00019     bool is_shading;
00020 
00021   };
00022 }
00023 
00024 #endif