2011-07-04 22:13:54 +02:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
GLeval.h
|
|
|
|
|
|
|
|
(c) 2005-2011 Laurent Carlier <lordheavy@users.sourceforge.net>
|
2011-12-31 03:39:20 +01:00
|
|
|
|
2011-07-04 22:13:54 +02:00
|
|
|
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-12-31 03:39:20 +01:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
2011-07-04 22:13:54 +02:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GLEVAL_H
|
|
|
|
#define __GLEVAL_H
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
DECLARE_METHOD(GLMAP1F);
|
|
|
|
DECLARE_METHOD(GLMAP2F);
|
2011-07-05 14:40:58 +02:00
|
|
|
//DECLARE_METHOD(GLGETMAPFV);
|
|
|
|
//DECLARE_METHOD(GLGETMAPIV);
|
2011-07-04 22:13:54 +02:00
|
|
|
DECLARE_METHOD(GLEVALCOORD1F);
|
|
|
|
DECLARE_METHOD(GLEVALCOORD2F);
|
2011-07-05 14:40:58 +02:00
|
|
|
DECLARE_METHOD(GLEVALCOORD2FV);
|
2011-07-04 22:13:54 +02:00
|
|
|
DECLARE_METHOD(GLMAPGRID1F);
|
|
|
|
DECLARE_METHOD(GLMAPGRID2F);
|
|
|
|
DECLARE_METHOD(GLEVALPOINT1);
|
|
|
|
DECLARE_METHOD(GLEVALPOINT2);
|
|
|
|
DECLARE_METHOD(GLEVALMESH1);
|
|
|
|
DECLARE_METHOD(GLEVALMESH2);
|
|
|
|
|
|
|
|
#endif /* __GLEVAL_H */
|
|
|
|
|
|
|
|
|