177 lines
8.4 KiB
C
177 lines
8.4 KiB
C
/*
|
|
Quake code is Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
Tenebrae code is Copyright (C) 2002-2003 Tenebrae Team
|
|
|
|
portions of OpenGL APIs declarations included herein are
|
|
the property of Copyright (C) Nvidia Corporation and Ati Technologies 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 the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
// NVidia defines
|
|
|
|
#ifndef GLNV_H
|
|
|
|
#define GLNV_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
#include <GL/gl.h>
|
|
|
|
#if !defined(SDL) && !defined (__glx__)
|
|
typedef void (APIENTRY * PFNGLCOMBINERPARAMETERFVNVPROC) (GLenum pname, const GLfloat *params);
|
|
typedef void (APIENTRY * PFNGLCOMBINERPARAMETERFNVPROC) (GLenum pname, GLfloat param);
|
|
typedef void (APIENTRY * PFNGLCOMBINERPARAMETERIVNVPROC) (GLenum pname, const GLint *params);
|
|
typedef void (APIENTRY * PFNGLCOMBINERPARAMETERINVPROC) (GLenum pname, GLint param);
|
|
typedef void (APIENTRY * PFNGLCOMBINERINPUTNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage);
|
|
typedef void (APIENTRY * PFNGLCOMBINEROUTPUTNVPROC) (GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum);
|
|
typedef void (APIENTRY * PFNGLFINALCOMBINERINPUTNVPROC) (GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage);
|
|
typedef void (APIENTRY * PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params);
|
|
typedef void (APIENTRY * PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params);
|
|
typedef void (APIENTRY * PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLfloat *params);
|
|
typedef void (APIENTRY * PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC) (GLenum stage, GLenum portion, GLenum pname, GLint *params);
|
|
typedef void (APIENTRY * PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC) (GLenum variable, GLenum pname, GLfloat *params);
|
|
typedef void (APIENTRY * PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC) (GLenum variable, GLenum pname, GLint *params);
|
|
#endif
|
|
|
|
|
|
#ifndef GL_NV_register_combiners2
|
|
/* NV_register_combiners2 */
|
|
typedef void (APIENTRY * PFNGLCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, const GLfloat *params);
|
|
typedef void (APIENTRY * PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC) (GLenum stage, GLenum pname, GLfloat *params);
|
|
#endif
|
|
|
|
extern PFNGLCOMBINERPARAMETERFVNVPROC qglCombinerParameterfvNV;
|
|
extern PFNGLCOMBINERPARAMETERIVNVPROC qglCombinerParameterivNV;
|
|
extern PFNGLCOMBINERPARAMETERFNVPROC qglCombinerParameterfNV;
|
|
extern PFNGLCOMBINERPARAMETERINVPROC qglCombinerParameteriNV;
|
|
extern PFNGLCOMBINERINPUTNVPROC qglCombinerInputNV;
|
|
extern PFNGLCOMBINEROUTPUTNVPROC qglCombinerOutputNV;
|
|
extern PFNGLFINALCOMBINERINPUTNVPROC qglFinalCombinerInputNV;
|
|
extern PFNGLGETCOMBINERINPUTPARAMETERFVNVPROC qglGetCombinerInputParameterfvNV;
|
|
extern PFNGLGETCOMBINERINPUTPARAMETERIVNVPROC qglGetCombinerInputParameterivNV;
|
|
extern PFNGLGETCOMBINEROUTPUTPARAMETERFVNVPROC qglGetCombinerOutputParameterfvNV;
|
|
extern PFNGLGETCOMBINEROUTPUTPARAMETERIVNVPROC qglGetCombinerOutputParameterivNV;
|
|
extern PFNGLGETFINALCOMBINERINPUTPARAMETERFVNVPROC qglGetFinalCombinerInputParameterfvNV;
|
|
extern PFNGLGETFINALCOMBINERINPUTPARAMETERIVNVPROC qglGetFinalCombinerInputParameterivNV;
|
|
extern PFNGLCOMBINERSTAGEPARAMETERFVNVPROC qglCombinerStageParameterfvNV;
|
|
extern PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC qglGetCombinerStageParameterfvNV;
|
|
|
|
|
|
#define GL_REGISTER_COMBINERS_NV 0x8522
|
|
#define GL_VARIABLE_A_NV 0x8523
|
|
#define GL_VARIABLE_B_NV 0x8524
|
|
#define GL_VARIABLE_C_NV 0x8525
|
|
#define GL_VARIABLE_D_NV 0x8526
|
|
#define GL_VARIABLE_E_NV 0x8527
|
|
#define GL_VARIABLE_F_NV 0x8528
|
|
#define GL_VARIABLE_G_NV 0x8529
|
|
#define GL_CONSTANT_COLOR0_NV 0x852A
|
|
#define GL_CONSTANT_COLOR1_NV 0x852B
|
|
#define GL_PRIMARY_COLOR_NV 0x852C
|
|
#define GL_SECONDARY_COLOR_NV 0x852D
|
|
#define GL_SPARE0_NV 0x852E
|
|
#define GL_SPARE1_NV 0x852F
|
|
#define GL_DISCARD_NV 0x8530
|
|
#define GL_E_TIMES_F_NV 0x8531
|
|
#define GL_SPARE0_PLUS_SECONDARY_COLOR_NV 0x8532
|
|
#define GL_UNSIGNED_IDENTITY_NV 0x8536
|
|
#define GL_UNSIGNED_INVERT_NV 0x8537
|
|
#define GL_EXPAND_NORMAL_NV 0x8538
|
|
#define GL_EXPAND_NEGATE_NV 0x8539
|
|
#define GL_HALF_BIAS_NORMAL_NV 0x853A
|
|
#define GL_HALF_BIAS_NEGATE_NV 0x853B
|
|
#define GL_SIGNED_IDENTITY_NV 0x853C
|
|
#define GL_SIGNED_NEGATE_NV 0x853D
|
|
#define GL_SCALE_BY_TWO_NV 0x853E
|
|
#define GL_SCALE_BY_FOUR_NV 0x853F
|
|
#define GL_SCALE_BY_ONE_HALF_NV 0x8540
|
|
#define GL_BIAS_BY_NEGATIVE_ONE_HALF_NV 0x8541
|
|
#define GL_COMBINER_INPUT_NV 0x8542
|
|
#define GL_COMBINER_MAPPING_NV 0x8543
|
|
#define GL_COMBINER_COMPONENT_USAGE_NV 0x8544
|
|
#define GL_COMBINER_AB_DOT_PRODUCT_NV 0x8545
|
|
#define GL_COMBINER_CD_DOT_PRODUCT_NV 0x8546
|
|
#define GL_COMBINER_MUX_SUM_NV 0x8547
|
|
#define GL_COMBINER_SCALE_NV 0x8548
|
|
#define GL_COMBINER_BIAS_NV 0x8549
|
|
#define GL_COMBINER_AB_OUTPUT_NV 0x854A
|
|
#define GL_COMBINER_CD_OUTPUT_NV 0x854B
|
|
#define GL_COMBINER_SUM_OUTPUT_NV 0x854C
|
|
#define GL_MAX_GENERAL_COMBINERS_NV 0x854D
|
|
#define GL_NUM_GENERAL_COMBINERS_NV 0x854E
|
|
#define GL_COLOR_SUM_CLAMP_NV 0x854F
|
|
#define GL_COMBINER0_NV 0x8550
|
|
#define GL_COMBINER1_NV 0x8551
|
|
#define GL_COMBINER2_NV 0x8552
|
|
#define GL_COMBINER3_NV 0x8553
|
|
#define GL_COMBINER4_NV 0x8554
|
|
#define GL_COMBINER5_NV 0x8555
|
|
#define GL_COMBINER6_NV 0x8556
|
|
#define GL_COMBINER7_NV 0x8557
|
|
|
|
#define GL_PER_STAGE_CONSTANTS_NV 0x8535
|
|
|
|
/* ARB_multitexture defines and prototypes from <GL/gl.h> */
|
|
#define GL_ACTIVE_TEXTURE_ARB 0x84E0
|
|
#define GL_CLIENT_ACTIVE_TEXTURE_ARB 0x84E1
|
|
#define GL_MAX_ACTIVE_TEXTURES_ARB 0x84E2
|
|
#define GL_TEXTURE0_ARB 0x84C0
|
|
#define GL_TEXTURE1_ARB 0x84C1
|
|
#define GL_TEXTURE2_ARB 0x84C2
|
|
#define GL_TEXTURE3_ARB 0x84C3
|
|
#define GL_TEXTURE4_ARB 0x84C4
|
|
#define GL_TEXTURE5_ARB 0x84C5
|
|
#define GL_TEXTURE6_ARB 0x84C6
|
|
#define GL_TEXTURE7_ARB 0x84C7
|
|
#define GL_TEXTURE8_ARB 0x84C8
|
|
#define GL_TEXTURE9_ARB 0x84C9
|
|
#define GL_TEXTURE10_ARB 0x84CA
|
|
#define GL_TEXTURE11_ARB 0x84CB
|
|
#define GL_TEXTURE12_ARB 0x84CC
|
|
#define GL_TEXTURE13_ARB 0x84CD
|
|
#define GL_TEXTURE14_ARB 0x84CE
|
|
#define GL_TEXTURE15_ARB 0x84CF
|
|
#define GL_TEXTURE16_ARB 0x84D0
|
|
#define GL_TEXTURE17_ARB 0x84D1
|
|
#define GL_TEXTURE18_ARB 0x84D2
|
|
#define GL_TEXTURE19_ARB 0x84D3
|
|
#define GL_TEXTURE20_ARB 0x84D4
|
|
#define GL_TEXTURE21_ARB 0x84D5
|
|
#define GL_TEXTURE22_ARB 0x84D6
|
|
#define GL_TEXTURE23_ARB 0x84D7
|
|
#define GL_TEXTURE24_ARB 0x84D8
|
|
#define GL_TEXTURE25_ARB 0x84D9
|
|
#define GL_TEXTURE26_ARB 0x84DA
|
|
#define GL_TEXTURE27_ARB 0x84DB
|
|
#define GL_TEXTURE28_ARB 0x84DC
|
|
#define GL_TEXTURE29_ARB 0x84DD
|
|
#define GL_TEXTURE30_ARB 0x84DE
|
|
#define GL_TEXTURE31_ARB 0x84DF
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* GLNV_H */
|