X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Feffects%2Feffect.h;fp=source%2Feffects%2Feffect.h;h=9bf49c22b812a585200a0c28890932dcadadf093;hb=5542f100cd82561aae4605dfca5a58b0eec8e2ae;hp=d763f251bd473b7b22e58c2230400805442d2fdd;hpb=f3bdaf61bbb01f66bde924a917d29d63c87f9851;p=libs%2Fgl.git diff --git a/source/effects/effect.h b/source/effects/effect.h index d763f251..9bf49c22 100644 --- a/source/effects/effect.h +++ b/source/effects/effect.h @@ -16,15 +16,15 @@ class Effect: public Renderable { protected: Renderable &renderable; - std::set enabled_passes; + std::set enabled_methods; protected: Effect(Renderable &); public: virtual ~Effect() { } - void enable_for_pass(Tag); - void disable_for_pass(Tag); + void enable_for_method(Tag); + void disable_for_method(Tag); virtual const Matrix *get_matrix() const { return renderable.get_matrix(); } virtual const Geometry::BoundingSphere *get_bounding_sphere() const { return renderable.get_bounding_sphere(); }