]> git.tdb.fi Git - libs/gl.git/blobdiff - source/animatedobject.cpp
Check the flat qualifier from the correct member
[libs/gl.git] / source / animatedobject.cpp
diff --git a/source/animatedobject.cpp b/source/animatedobject.cpp
deleted file mode 100644 (file)
index df0217a..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "animatedobject.h"
-#include "renderer.h"
-
-namespace Msp {
-namespace GL {
-
-AnimatedObject::AnimatedObject(const Object &o):
-       ObjectInstance(o)
-{ }
-
-void AnimatedObject::set_matrix(const Matrix &m)
-{
-       matrix = m;
-}
-
-void AnimatedObject::setup_render(Renderer &renderer, const Tag &) const
-{
-       renderer.matrix_stack() *= matrix;
-}
-
-} // namespace GL
-} // namespace Msp