]> git.tdb.fi Git - libs/gl.git/blobdiff - source/renderable.h
Drop Id tags and copyright notices from files
[libs/gl.git] / source / renderable.h
index 8e31d5a7ac79e0f4a379b581da4b68ef37823c05..c055cefa65b989047ff0b324ab53259204ac77c1 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007, 2011  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GL_RENDERABLE_H_
 #define MSP_GL_RENDERABLE_H_
 
@@ -23,6 +16,9 @@ protected:
 public:
        virtual ~Renderable() { }
 
+       /** Returns a key used for grouping Renderables in an InstanceScene. */
+       virtual long get_instance_key() const { return 0; }
+
        virtual void render(const Tag & = Tag()) const;
        virtual void render(Renderer &, const Tag & = Tag()) const;
 };