| Home | Namespaces | Hierarchy | Alphabetical List | Class list | Files | Namespace Members | Class members | File members |
00001 // Copyright (C) 2002-2008 Nikolaus Gebhardt 00002 // This file is part of the "Irrlicht Engine". 00003 // For conditions of distribution and use, see copyright notice in irrlicht.h 00004 00005 #ifndef __I_SHADER_CONSTANT_SET_CALLBACT_H_INCLUDED__ 00006 #define __I_SHADER_CONSTANT_SET_CALLBACT_H_INCLUDED__ 00007 00008 #include "IReferenceCounted.h" 00009 00010 namespace irr 00011 { 00012 namespace video 00013 { 00014 class IMaterialRendererServices; 00015 00017 00020 class IShaderConstantSetCallBack : public virtual IReferenceCounted 00021 { 00022 public: 00023 00025 virtual ~IShaderConstantSetCallBack() {} 00026 00028 00058 virtual void OnSetConstants(IMaterialRendererServices* services, s32 userData) = 0; 00059 }; 00060 00061 00062 } // end namespace video 00063 } // end namespace irr 00064 00065 #endif 00066
| The Irrlicht
Engine Documentation © 2003-2008 by Nikolaus Gebhardt. Generated
on Sun Jun 1 07:59:08 2008 by Doxygen
(1.4.2) |