X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fmaterials%2Frenderpass.h;fp=source%2Fmaterials%2Frenderpass.h;h=46fb7a3535a0bb51a2417e190e3cf3f3dd5a809e;hb=cb7db94f7837e6a3be037d07575dc248177d9426;hp=b5b9cfb5af107149f1b01e930193aedae33539ec;hpb=04005f74fece3c33848ed9420dc0f9c431a9f0ec;p=libs%2Fgl.git diff --git a/source/materials/renderpass.h b/source/materials/renderpass.h index b5b9cfb5..46fb7a35 100644 --- a/source/materials/renderpass.h +++ b/source/materials/renderpass.h @@ -79,6 +79,7 @@ private: std::string material_slot; std::vector textures; bool back_faces; + bool receive_shadows; public: RenderPass(); @@ -102,6 +103,8 @@ public: DEPRECATED int get_texture_index(const std::string &) const; void set_back_faces(bool); bool get_back_faces() const { return back_faces; } + void set_receive_shadows(bool); + bool get_receive_shadows() const { return receive_shadows; } void apply(Renderer &) const; };