source: GTP/branches/IllumWPdeliver2008dec/IlluminationWP/precompiled/include/IllumModule/RenderTechniques/DepthShadowReceiverRenderTechnique.h @ 3255

Revision 3255, 690 bytes checked in by szirmay, 15 years ago (diff)
Line 
1#pragma once
2#include "RenderTechnique.h"
3
4/**
5        @brief Base abstract class __declspec( dllexport ) of rendering an object that recieves shadows with depth map shadow technique.       
6*/
7class __declspec( dllexport ) DepthShadowReceiverRenderTechnique : virtual public RenderTechnique
8{
9public:
10        /**
11                @brief Constructor.
12
13                @param parentRenderable the object to operate on
14                @param parentTechniqueGroup the TechniqueGroup this RenderedTechnique is attached to
15        */
16        DepthShadowReceiverRenderTechnique(
17                                                        ElementaryRenderable* parentRenderable,
18                                                        TechniqueGroup* parentTechniqueGroup
19                                                        );
20        virtual ~DepthShadowReceiverRenderTechnique(); 
21       
22protected:             
23       
24};
Note: See TracBrowser for help on using the repository browser.