X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fmaterials%2Fpbrmaterial.h;h=3e9b26ade8d525aff7b08c4d399d34f36e5d8f0c;hb=fe2fc291a4fc618425c64112c9ffd3519f0b8a3e;hp=a1f736f4bf3af657f938be004de70e621e4c9570;hpb=842c817bb679a5a0abc05e8149e2e6e0ae1a0412;p=libs%2Fgl.git diff --git a/source/materials/pbrmaterial.h b/source/materials/pbrmaterial.h index a1f736f4..3e9b26ad 100644 --- a/source/materials/pbrmaterial.h +++ b/source/materials/pbrmaterial.h @@ -29,7 +29,8 @@ private: Property roughness; Property occlusion; Property emission; - bool receive_shadows; + + static const Tag texture_tags[]; public: PbrMaterial(); @@ -38,7 +39,10 @@ protected: virtual void fill_program_info(std::string &, std::map &) const; public: - virtual void attach_textures_to(Texturing &, ProgramData &) const; + DEPRECATED virtual void attach_textures_to(Texturing &, ProgramData &) const; + + virtual const Tag *get_texture_tags() const { return texture_tags; } + virtual const Texture *get_texture(Tag) const; void set_base_color(const Color &); void set_base_color_map(const Texture *); @@ -50,7 +54,6 @@ public: void set_occlusion_map(const Texture *); void set_emission(const Color &); void set_emission_map(const Texture *); - void set_receive_shadows(bool); }; } // namespace GL