X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Frenderable.h;h=8e31d5a7ac79e0f4a379b581da4b68ef37823c05;hb=5172d32d67595ea0b70184fadcfcb8e023cccbc8;hp=b83fdb0dfc59747400d63434372299188015cec1;hpb=61f90f1680884b02e783d2d419f9326e5d6f397b;p=libs%2Fgl.git diff --git a/source/renderable.h b/source/renderable.h index b83fdb0d..8e31d5a7 100644 --- a/source/renderable.h +++ b/source/renderable.h @@ -1,7 +1,7 @@ /* $Id$ This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2007, 2011 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -14,6 +14,8 @@ Distributed under the LGPL namespace Msp { namespace GL { +class Renderer; + class Renderable { protected: @@ -21,8 +23,8 @@ protected: public: virtual ~Renderable() { } - virtual bool has_pass(const Tag &tag) const =0; - virtual void render(const Tag &tag=Tag()) const =0; + virtual void render(const Tag & = Tag()) const; + virtual void render(Renderer &, const Tag & = Tag()) const; }; } // namespace Msp