X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Frenderable.h;h=00b8b9012d32d927c2ac1506484db86aa63ba834;hp=b9b6b080e363150616dc809072217dffda23395e;hb=c6aea1bc1586ffef132e6fffdf99343cb56617db;hpb=4324df6e3d807d35e02e828320e436c509275520 diff --git a/source/renderable.h b/source/renderable.h index b9b6b080..00b8b901 100644 --- a/source/renderable.h +++ b/source/renderable.h @@ -9,6 +9,7 @@ Distributed under the LGPL #define MSP_GL_RENDERABLE_H_ #include +#include "tag.h" namespace Msp { namespace GL { @@ -16,10 +17,9 @@ namespace GL { class Renderable { public: - virtual bool has_pass(const std::string &pn) const =0; + virtual bool has_pass(const Tag &tag) const =0; - virtual void render() const =0; - virtual void render(const std::string &pn) const =0; + virtual void render(const Tag &tag=Tag()) const =0; }; } // namespace Msp