]> 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 0866663..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#include <msp/strings/format.h>
-#include "animatedobject.h"
-#include "object.h"
-#include "programdata.h"
-#include "renderer.h"
-#include "technique.h"
-
-namespace Msp {
-namespace GL {
-
-AnimatedObject::AnimatedObject(const Object &o):
-       ObjectInstance(o),
-       shdata(0)
-{
-       if(const Technique *tech = object.get_technique())
-               if(tech->has_shaders())
-                       shdata = new ProgramData;
-}
-
-void AnimatedObject::set_matrix(const Matrix &m)
-{
-       matrix = m;
-}
-
-void AnimatedObject::set_pose_matrix(unsigned link, const Matrix &m)
-{
-       if(shdata)
-               shdata->uniform_matrix4(format("pose[%d]", link), m);
-}
-
-void AnimatedObject::setup_render(Renderer &renderer, const Tag &) const
-{
-       renderer.matrix_stack() *= matrix;
-       if(shdata)
-               renderer.add_shader_data(shdata);
-}
-
-} // namespace GL
-} // namespace Msp