mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +00:00
d743c6c55f
Add GLSL directory to QF and use it for all gsls based code (instead of GL). defines.h, types.h and funcs.h are derived from gl2.h from khronos. Text drawing now uses triangles instead of quads.
56 lines
1.4 KiB
C
56 lines
1.4 KiB
C
/*
|
|
funcs.h
|
|
|
|
GLSL 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$
|
|
*/
|
|
|
|
#ifndef __QF_GLSL_funcs_h_
|
|
#define __QF_GLSL_funcs_h_
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "QF/qtypes.h"
|
|
#include "QF/GLSL/types.h"
|
|
|
|
#ifdef _WIN32
|
|
# include <windows.h>
|
|
#endif
|
|
|
|
#define QFGL_WANT(ret, name, args) extern ret (GLAPIENTRY * qf##name) args;
|
|
#define QFGL_NEED(ret, name, args) extern ret (GLAPIENTRY * qf##name) args;
|
|
#include "QF/GLSL/qf_funcs_list.h"
|
|
#undef QFGL_NEED
|
|
#undef QFGL_WANT
|
|
|
|
extern void *libgl_handle;
|
|
|
|
qboolean GLF_Init (void);
|
|
qboolean GLF_FindFunctions (void);
|
|
void *QFGL_ProcAddress (void *handle, const char *name, qboolean);
|
|
|
|
void *QFGL_LoadLibrary (void);
|
|
void *QFGL_GetProcAddress (void *handle, const char *name);
|
|
|
|
#endif // __QF_GLSL_funcs_h_
|