X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpart.cpp;h=72c8921b1c03663181645623ac8485386afe83e8;hb=202abf876bc54c0f82c1afcd26b3b79fd1cd4815;hp=f0ee4b920a226bd2108bd946523ae92cf4550447;hpb=eb6eee5fabf05abca4a0434c2a8f8f62c900afec;p=libs%2Fgltk.git diff --git a/source/part.cpp b/source/part.cpp index f0ee4b9..72c8921 100644 --- a/source/part.cpp +++ b/source/part.cpp @@ -23,20 +23,14 @@ const Graphic *Part::get_graphic(State state) const return graphic[state]; } -void Part::build(const Geometry &parent, State state, CachedPart &cache) const +void Part::build(const Geometry &parent, State state, PartCache &cache) const { - if(!graphic[state]) - { - cache.texture = 0; + if(!graphic[state] || !graphic[state]->get_texture()) return; - } - - cache.texture = graphic[state]->get_texture(); - cache.clear_mesh(); Geometry rgeom = geom; align.apply(rgeom, parent, margin); - GL::MeshBuilder bld(*cache.mesh); + GL::MeshBuilder bld(cache.create_mesh(*this, *graphic[state]->get_texture())); bld.matrix() *= GL::Matrix::translation(rgeom.x, rgeom.y, 0); graphic[state]->build(rgeom.w, rgeom.h, bld); } @@ -64,9 +58,14 @@ Part::Loader::~Loader() } } +void Part::Loader::graphic_normal(const string &n) +{ + graphic(NORMAL, n); +} + void Part::Loader::graphic(State s, const string &n) { - Graphic *grph = &get_collection().get(n); + Graphic *grph = (n.empty() ? 0 : &get_collection().get(n)); for(int i=0; i