X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ftechnique.cpp;h=d963bea46c60f0d386439eac8ba6fb9ef8a967d3;hp=74505c8e0b15ce6d457cf08369592c2e8084bfa8;hb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8;hpb=b617c5d7b5283ad260a77f01e42e6170cabbc03d diff --git a/source/technique.cpp b/source/technique.cpp index 74505c8e..d963bea4 100644 --- a/source/technique.cpp +++ b/source/technique.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include #include #include @@ -20,6 +13,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 +81,15 @@ Technique::InheritLoader::InheritLoader(Technique &t, Collection &c): add("texture", &InheritLoader::texture); } -void Technique::InheritLoader::texture(const string &slot, 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(slot, tex); - } - catch(const KeyError &) - { } + int index = i->second.get_texture_index(slot); + if(index<0) + continue; + i->second.set_texture(index, tex); } }