Lines Matching refs:Config
194 namespace config
197 struct Config
199 virtual ~Config (void) {};
202 struct Image : public Config
255 struct Attachment : public Config
324 } // config
326 class FboBuilder : public config::Framebuffer
330 const config::Attachment* att);
331 glw::GLuint glCreateTexture (const config::Texture& texCfg);
332 glw::GLuint glCreateRbo (const config::Renderbuffer& rbCfg);
338 //! Allocate a new configuration of type `Config` (which must be a
339 //! subclass of `config::Config`), and return a referenc to it. The newly
341 template<typename Config>
342 Config& makeConfig (void)
344 Config* cfg = new Config();
350 typedef std::set<config::Config*> Configs;
391 void logFramebufferConfig (const config::Framebuffer& cfg, tcu::TestLog& log);
407 const config::Attachment& att,
408 const config::Image* image) = 0;
433 ValidStatusCodes validStatusCodes (const config::Framebuffer& cfg) const;