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