X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftechnique.cpp;h=49b487982993d259f3807c8b3820f9991cf85998;hb=8ac93980ef87834fd431c97104baa441561a7ce0;hp=9cbb005a54b8272bd36ab9e6c2c4f493411fb4cb;hpb=09e886603fbc255f6a6241641ff42c466f8387ff;p=libs%2Fgl.git diff --git a/source/technique.cpp b/source/technique.cpp index 9cbb005a..49b48798 100644 --- a/source/technique.cpp +++ b/source/technique.cpp @@ -1,7 +1,7 @@ /* $Id$ This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2008-2011 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -20,6 +20,14 @@ using namespace std; namespace Msp { namespace GL { +RenderPass &Technique::add_pass(const GL::Tag &tag) +{ + if(passes.count(tag)) + throw KeyError("Duplicate pass"); + + return passes[tag]; +} + bool Technique::has_pass(const GL::Tag &tag) const { return passes.count(tag); @@ -80,17 +88,15 @@ Technique::InheritLoader::InheritLoader(Technique &t, Collection &c): add("texture", &InheritLoader::texture); } -void Technique::InheritLoader::texture(unsigned index, const string &name) +void Technique::InheritLoader::texture(const std::string &slot, const string &name) { Texture *tex = get_collection().get(name); for(PassMap::iterator i=obj.passes.begin(); i!=obj.passes.end(); ++i) { - try - { - i->second.set_texture(index, tex); - } - catch(const KeyError &) - { } + int index = i->second.get_texture_index(slot); + if(index<0) + continue; + i->second.set_texture(index, tex); } }