]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/part.cpp
Adjust things to conform to changes in other libraries
[libs/gltk.git] / source / part.cpp
index 72c8921b1c03663181645623ac8485386afe83e8..22aa378f3f41d52146c473243b821938031ffc0c 100644 (file)
@@ -31,7 +31,7 @@ void Part::build(const Geometry &parent, State state, PartCache &cache) const
        Geometry rgeom = geom;
        align.apply(rgeom, parent, margin);
        GL::MeshBuilder bld(cache.create_mesh(*this, *graphic[state]->get_texture()));
-       bld.matrix() *= GL::Matrix::translation(rgeom.x, rgeom.y, 0);
+       bld.transform(GL::Matrix::translation(rgeom.x, rgeom.y, 0));
        graphic[state]->build(rgeom.w, rgeom.h, bld);
 }