source: OGRE/trunk/ogrenew/RenderSystems/GL/src/atifs/include/ATI_FS_GLGpuProgram.h @ 692

Revision 692, 2.5 KB checked in by mattausch, 18 years ago (diff)

adding ogre 1.2 and dependencies

Line 
1/*
2-----------------------------------------------------------------------------
3This source file is part of OGRE
4    (Object-oriented Graphics Rendering Engine)
5For the latest info, see http://www.stevestreeting.com/ogre/
6
7Copyright (c) 2000-2005 The OGRE Teameeting
8Also see acknowledgements in Readme.html
9
10This program is free software; you can redistribute it and/or modify it under
11the terms of the GNU General Public License as published by the Free Software
12Foundation; either version 2 of the License, or (at your option) any later
13version.
14
15This program is distributed in the hope that it will be useful, but WITHOUT
16ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License along with
20this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21Place - Suite 330, Boston, MA 02111-1307, USA, or go to
22http://www.gnu.org/copyleft/gpl.html.
23-----------------------------------------------------------------------------
24*/
25
26#ifndef __ATI_FS_GLGpuProgram_H__
27#define __ATI_FS_GLGpuProgram_H__
28
29#include "OgreGLPrerequisites.h"
30#include "OgreGLGpuProgram.h"
31
32namespace Ogre {
33
34        /** Specialisation of the GL low-level program for ATI Fragment Shader programs. */
35        class ATI_FS_GLGpuProgram : public GLGpuProgram
36        {
37        public:
38        ATI_FS_GLGpuProgram(ResourceManager* creator,
39            const String& name, ResourceHandle handle,
40            const String& group, bool isManual, ManualResourceLoader* loader);
41                virtual ~ATI_FS_GLGpuProgram();
42
43
44                /// Execute the binding functions for this program
45                void bindProgram(void);
46                /// Execute the unbinding functions for this program
47                void unbindProgram(void);
48                /// Execute the param binding functions for this program
49                void bindProgramParameters(GpuProgramParametersSharedPtr params);
50                /** Execute the pass iteration param binding functions for this program.
51            Only binds those parameters used for multipass rendering
52        */
53        void bindProgramPassIterationParameters(GpuProgramParametersSharedPtr params);
54
55                /// Get the assigned GL program id
56                const GLuint getProgramID(void) const
57                { return mProgramID; }
58
59        protected:
60                /// @copydoc Resource::unload
61                void unloadImpl(void);
62                void loadFromSource(void);
63
64        }; // class ATI_FS_GLGpuProgram
65
66
67
68}; // namespace Ogre
69
70#endif // __ATI_FS_GLGpuProgram_H__
Note: See TracBrowser for help on using the repository browser.