X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpart.cpp;h=dbccc060e828c8b4b5f1f07a5f650dfc94d638fa;hb=81c4024fb6acf37df702a803dc4efdf82a81525a;hp=4726b4c007daed4e665d64b13cadf76e28e8fc2b;hpb=601e9fbcfdb26b53aff4d44805bb596f0b73208a;p=libs%2Fgltk.git diff --git a/source/part.cpp b/source/part.cpp index 4726b4c..dbccc06 100644 --- a/source/part.cpp +++ b/source/part.cpp @@ -11,9 +11,7 @@ namespace GLtk { Part::Part(const string &n): name(n) -{ - fill(graphic, graphic+N_STATES_, static_cast(0)); -} +{ } const Graphic *Part::get_graphic(State state) const { @@ -31,7 +29,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); } @@ -65,7 +63,7 @@ void Part::Loader::graphic_normal(const string &n) void Part::Loader::graphic(State s, const string &n) { - Graphic *grph = &get_collection().get(n); + Graphic *grph = (n.empty() ? nullptr : &get_collection().get(n)); for(int i=0; i