2009-12-24 12:34:17 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
GLshader.h
|
|
|
|
|
|
|
|
(c) 2009 Laurent Carlier <lordheavy@users.sourceforge.net>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2009-12-24 12:34:17 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GLSHADER_H
|
|
|
|
#define __GLSHADER_H
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
DECLARE_METHOD(GLATTACHSHADER);
|
|
|
|
DECLARE_METHOD(GLCOMPILESHADER);
|
|
|
|
DECLARE_METHOD(GLCREATESHADER);
|
|
|
|
DECLARE_METHOD(GLDELETESHADER);
|
|
|
|
DECLARE_METHOD(GLDETACHSHADER);
|
|
|
|
DECLARE_METHOD(GLGETATTACHEDSHADERS);
|
|
|
|
DECLARE_METHOD(GLGETSHADERINFOLOG);
|
|
|
|
DECLARE_METHOD(GLGETSHADERIV);
|
|
|
|
DECLARE_METHOD(GLGETSHADERSOURCE);
|
|
|
|
DECLARE_METHOD(GLISSHADER);
|
|
|
|
DECLARE_METHOD(GLSHADERSOURCE);
|
|
|
|
|
|
|
|
#endif /* __GLSHADER_H */
|