1 #ifndef PIPELINEBUILDER_H_
2 #define PIPELINEBUILDER_H_
12 class PipelineTemplate;
19 const PipelineTemplate &tmpl;
20 std::map<std::string, Renderable *> renderables;
23 PipelineBuilder(const PipelineTemplate &);
25 void set_renderable(const std::string &, Renderable &);
27 void build(Pipeline &) const;
28 Pipeline *build(unsigned, unsigned) const;
29 Pipeline *build(const View &) const;
30 Pipeline *build(const Framebuffer &) const;