aboutsummaryrefslogtreecommitdiff
path: root/serialize_lib/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'serialize_lib/readme.md')
0 files changed, 0 insertions, 0 deletions
ed a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "irrlichttypes_extrabloated.h" #include <IMaterialRendererServices.h> #include <IShaderConstantSetCallBack.h> class shadowScreenQuad { public: shadowScreenQuad(); void render(video::IVideoDriver *driver); video::SMaterial &getMaterial() { return Material; } private: video::S3DVertex Vertices[6]; video::SMaterial Material; }; class shadowScreenQuadCB : public video::IShaderConstantSetCallBack { public: shadowScreenQuadCB(){}; virtual void OnSetConstants(video::IMaterialRendererServices *services, s32 userData); };