2001-06-24 09:25:55 +00:00
|
|
|
/*
|
|
|
|
funcs.h
|
|
|
|
|
|
|
|
GL function defs.
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
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
|
|
|
|
of the License, 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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
2001-06-25 06:17:07 +00:00
|
|
|
#ifndef __QF_GL_funcs_h_
|
|
|
|
#define __QF_GL_funcs_h_
|
2001-06-24 09:25:55 +00:00
|
|
|
|
2001-10-15 18:24:30 +00:00
|
|
|
#include "QF/GL/extensions.h"
|
2001-06-24 09:25:55 +00:00
|
|
|
#include "QF/GL/types.h"
|
2001-06-25 06:17:07 +00:00
|
|
|
#include "QF/qtypes.h"
|
2001-06-24 09:25:55 +00:00
|
|
|
|
2001-10-21 21:23:45 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2004-01-28 02:49:57 +00:00
|
|
|
#define QFGL_WANT(ret, name, args) extern ret (GLAPIENTRY * qf##name) args;
|
2002-03-11 23:55:50 +00:00
|
|
|
#define QFGL_NEED(ret, name, args) extern ret (GLAPIENTRY * qf##name) args;
|
2001-06-24 09:25:55 +00:00
|
|
|
#include "QF/GL/qf_funcs_list.h"
|
|
|
|
#undef QFGL_NEED
|
2004-01-28 02:49:57 +00:00
|
|
|
#undef QFGL_WANT
|
2001-06-24 09:25:55 +00:00
|
|
|
|
2001-10-15 19:06:22 +00:00
|
|
|
extern void *libgl_handle;
|
|
|
|
|
2001-06-25 06:17:07 +00:00
|
|
|
qboolean GLF_Init (void);
|
2004-02-06 00:58:35 +00:00
|
|
|
qboolean GLF_FindFunctions (void);
|
2002-08-16 18:29:21 +00:00
|
|
|
void *QFGL_ProcAddress (void *handle, const char *name, qboolean);
|
2001-06-25 06:17:07 +00:00
|
|
|
|
2002-08-16 18:29:21 +00:00
|
|
|
void *QFGL_LoadLibrary (void);
|
|
|
|
void *QFGL_GetProcAddress (void *handle, const char *name);
|
2002-06-24 21:35:37 +00:00
|
|
|
|
2001-06-25 06:17:07 +00:00
|
|
|
#endif // __QF_GL_funcs_h_
|