]> git.tdb.fi Git - libs/gl.git/blobdiff - source/materials/basicmaterial.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / materials / basicmaterial.h
index bf4a1c1c5d16bccbec28edbf0f63fd018041f338..4fe4e10c2012bc9be0c3e2171bd39f01e8e341a5 100644 (file)
@@ -6,6 +6,13 @@
 namespace Msp {
 namespace GL {
 
+/**
+A basic and cheap material using the Phong shading model.  Results are roughly
+equivalent to legacy OpenGL materials.
+
+In addition to the usual properties of the Phong shading model, normal mapping
+and reflections are supported.  Reflections require an EnvironmentMap effect.
+*/
 class BasicMaterial: public Material
 {
 public:
@@ -15,7 +22,6 @@ public:
                static ActionMap shared_actions;
 
        public:
-               Loader(BasicMaterial &);
                Loader(BasicMaterial &, Collection &);
 
        private:
@@ -39,8 +45,6 @@ protected:
        virtual void fill_program_info(std::string &, std::map<std::string, int> &) const;
 
 public:
-       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;