00001 /* 00002 * Cg shader program GL header 00003 * 00004 * This file is part of the "SoftPixel Engine" (Copyright (c) 2008 by Lukas Hermanns) 00005 * See "SoftPixelEngine.hpp" for license information. 00006 */ 00007 00008 #ifndef __SP_CG_SHADERPROGRAM_GL_H__ 00009 #define __SP_CG_SHADERPROGRAM_GL_H__ 00010 00011 00012 #include "Base/spStandard.hpp" 00013 00014 #if defined(SP_COMPILE_WITH_CG) && defined(SP_COMPILE_WITH_OPENGL) 00015 00016 00017 #include "Framework/Cg/spCgShaderProgram.hpp" 00018 #include "RenderSystem/spShaderConfigTypes.hpp" 00019 00020 00021 namespace sp 00022 { 00023 namespace video 00024 { 00025 00026 00027 class SP_EXPORT CgShaderProgramGL : public CgShaderProgram 00028 { 00029 00030 public: 00031 00032 CgShaderProgramGL(ShaderClass* Table, const EShaderTypes Type, const EShaderVersions Version); 00033 ~CgShaderProgramGL(); 00034 00035 /* Functions */ 00036 00037 bool setConstant(const io::stringc &Name, const f32* Buffer, s32 Count); 00038 00039 private: 00040 00041 /* Functions */ 00042 00043 void bind(); 00044 void unbind(); 00045 00046 bool compileCg( 00047 const io::stringc &SourceCodeString, const io::stringc &EntryPoint, const c8** CompilerOptions = 0 00048 ); 00049 00050 }; 00051 00052 00053 } // /namespace video 00054 00055 } // /namespace sp 00056 00057 00058 #endif 00059 00060 #endif 00061 00062 00063 00064 // ================================================================================