Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygennvprogram.h
Go to the documentation of this file.
00001 /* 00002 * Mesa 3-D graphics library 00003 * Version: 5.1 00004 * 00005 * Copyright (C) 1999-2003 Brian Paul All Rights Reserved. 00006 * 00007 * Permission is hereby granted, free of charge, to any person obtaining a 00008 * copy of this software and associated documentation files (the "Software"), 00009 * to deal in the Software without restriction, including without limitation 00010 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 00011 * and/or sell copies of the Software, and to permit persons to whom the 00012 * Software is furnished to do so, subject to the following conditions: 00013 * 00014 * The above copyright notice and this permission notice shall be included 00015 * in all copies or substantial portions of the Software. 00016 * 00017 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 00018 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00019 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 00020 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 00021 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 00022 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 00023 * 00024 * Authors: 00025 * Brian Paul 00026 */ 00027 00028 00029 #ifndef NVPROGRAM_H 00030 #define NVPROGRAM_H 00031 00032 00033 extern void GLAPIENTRY 00034 _mesa_ExecuteProgramNV(GLenum target, GLuint id, const GLfloat *params); 00035 00036 extern GLboolean GLAPIENTRY 00037 _mesa_AreProgramsResidentNV(GLsizei n, const GLuint *ids, GLboolean *residences); 00038 00039 extern void GLAPIENTRY 00040 _mesa_RequestResidentProgramsNV(GLsizei n, const GLuint *ids); 00041 00042 extern void GLAPIENTRY 00043 _mesa_GetProgramParameterfvNV(GLenum target, GLuint index, GLenum pname, GLfloat *params); 00044 00045 extern void GLAPIENTRY 00046 _mesa_GetProgramParameterdvNV(GLenum target, GLuint index, GLenum pname, GLdouble *params); 00047 00048 extern void GLAPIENTRY 00049 _mesa_GetProgramivNV(GLuint id, GLenum pname, GLint *params); 00050 00051 extern void GLAPIENTRY 00052 _mesa_GetProgramStringNV(GLuint id, GLenum pname, GLubyte *program); 00053 00054 extern void GLAPIENTRY 00055 _mesa_GetTrackMatrixivNV(GLenum target, GLuint address, GLenum pname, GLint *params); 00056 00057 extern void GLAPIENTRY 00058 _mesa_GetVertexAttribdvNV(GLuint index, GLenum pname, GLdouble *params); 00059 00060 extern void GLAPIENTRY 00061 _mesa_GetVertexAttribfvNV(GLuint index, GLenum pname, GLfloat *params); 00062 00063 extern void GLAPIENTRY 00064 _mesa_GetVertexAttribivNV(GLuint index, GLenum pname, GLint *params); 00065 00066 extern void GLAPIENTRY 00067 _mesa_GetVertexAttribPointervNV(GLuint index, GLenum pname, GLvoid **pointer); 00068 00069 extern void GLAPIENTRY 00070 _mesa_LoadProgramNV(GLenum target, GLuint id, GLsizei len, const GLubyte *program); 00071 00072 extern void GLAPIENTRY 00073 _mesa_ProgramParameters4dvNV(GLenum target, GLuint index, GLuint num, const GLdouble *params); 00074 00075 extern void GLAPIENTRY 00076 _mesa_ProgramParameters4fvNV(GLenum target, GLuint index, GLuint num, const GLfloat *params); 00077 00078 extern void GLAPIENTRY 00079 _mesa_TrackMatrixNV(GLenum target, GLuint address, GLenum matrix, GLenum transform); 00080 00081 00082 extern void GLAPIENTRY 00083 _mesa_ProgramNamedParameter4fNV(GLuint id, GLsizei len, const GLubyte *name, 00084 GLfloat x, GLfloat y, GLfloat z, GLfloat w); 00085 00086 extern void GLAPIENTRY 00087 _mesa_ProgramNamedParameter4fvNV(GLuint id, GLsizei len, const GLubyte *name, 00088 const float v[]); 00089 00090 extern void GLAPIENTRY 00091 _mesa_ProgramNamedParameter4dNV(GLuint id, GLsizei len, const GLubyte *name, 00092 GLdouble x, GLdouble y, GLdouble z, GLdouble w); 00093 00094 extern void GLAPIENTRY 00095 _mesa_ProgramNamedParameter4dvNV(GLuint id, GLsizei len, const GLubyte *name, 00096 const double v[]); 00097 00098 extern void GLAPIENTRY 00099 _mesa_GetProgramNamedParameterfvNV(GLuint id, GLsizei len, const GLubyte *name, 00100 GLfloat *params); 00101 00102 extern void GLAPIENTRY 00103 _mesa_GetProgramNamedParameterdvNV(GLuint id, GLsizei len, const GLubyte *name, 00104 GLdouble *params); 00105 00106 00107 #endif Generated on Sat May 26 2012 04:19:21 for ReactOS by
1.7.6.1
|