]> git.tdb.fi Git - libs/gl.git/blobdiff - source/materials/rendermethod.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / materials / rendermethod.h
index 9ac9337fe321989ca187ccce126fda422b363277..8fd289fe47c4a6638c7bc25e3e9fa6dc7e25bc7e 100644 (file)
@@ -89,6 +89,7 @@ private:
        Blend blend;
        bool receive_shadows = false;
        bool image_based_lighting = false;
+       bool instancing = false;
 
        void maybe_create_material_shader();
        void set_material_textures();
@@ -126,6 +127,12 @@ public:
 
        bool get_image_based_lighting() const { return image_based_lighting; }
 
+       /** Toggles instanced rendering.  Only affects shaders created from
+       materials.  Should be used with InstanceArray. */
+       void set_instancing(bool);
+
+       bool get_instancing() const { return instancing; }
+
        void apply(Renderer &) const;
 
        void set_debug_name(const std::string &);