Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenarbprogram.h
Go to the documentation of this file.
00001 /* 00002 * Mesa 3-D graphics library 00003 * Version: 6.5.2 00004 * 00005 * Copyright (C) 1999-2006 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 00025 00026 #ifndef ARBPROGRAM_H 00027 #define ARBPROGRAM_H 00028 00029 00030 extern void GLAPIENTRY 00031 _mesa_BindProgram(GLenum target, GLuint id); 00032 00033 extern void GLAPIENTRY 00034 _mesa_DeletePrograms(GLsizei n, const GLuint *ids); 00035 00036 extern void GLAPIENTRY 00037 _mesa_GenPrograms(GLsizei n, GLuint *ids); 00038 00039 00040 extern void GLAPIENTRY 00041 _mesa_EnableVertexAttribArrayARB(GLuint index); 00042 00043 00044 extern void GLAPIENTRY 00045 _mesa_DisableVertexAttribArrayARB(GLuint index); 00046 00047 00048 extern void GLAPIENTRY 00049 _mesa_GetVertexAttribdvARB(GLuint index, GLenum pname, GLdouble *params); 00050 00051 00052 extern void GLAPIENTRY 00053 _mesa_GetVertexAttribfvARB(GLuint index, GLenum pname, GLfloat *params); 00054 00055 00056 extern void GLAPIENTRY 00057 _mesa_GetVertexAttribivARB(GLuint index, GLenum pname, GLint *params); 00058 00059 00060 extern void GLAPIENTRY 00061 _mesa_GetVertexAttribPointervARB(GLuint index, GLenum pname, GLvoid **pointer); 00062 00063 00064 extern GLboolean GLAPIENTRY 00065 _mesa_IsProgramARB(GLuint id); 00066 00067 00068 extern void GLAPIENTRY 00069 _mesa_ProgramStringARB(GLenum target, GLenum format, GLsizei len, 00070 const GLvoid *string); 00071 00072 00073 extern void GLAPIENTRY 00074 _mesa_ProgramEnvParameter4dARB(GLenum target, GLuint index, 00075 GLdouble x, GLdouble y, GLdouble z, GLdouble w); 00076 00077 00078 extern void GLAPIENTRY 00079 _mesa_ProgramEnvParameter4dvARB(GLenum target, GLuint index, 00080 const GLdouble *params); 00081 00082 00083 extern void GLAPIENTRY 00084 _mesa_ProgramEnvParameter4fARB(GLenum target, GLuint index, 00085 GLfloat x, GLfloat y, GLfloat z, GLfloat w); 00086 00087 00088 extern void GLAPIENTRY 00089 _mesa_ProgramEnvParameter4fvARB(GLenum target, GLuint index, 00090 const GLfloat *params); 00091 00092 00093 extern void GLAPIENTRY 00094 _mesa_ProgramEnvParameters4fvEXT(GLenum target, GLuint index, GLsizei count, 00095 const GLfloat *params); 00096 00097 00098 extern void GLAPIENTRY 00099 _mesa_ProgramLocalParameter4dARB(GLenum target, GLuint index, 00100 GLdouble x, GLdouble y, 00101 GLdouble z, GLdouble w); 00102 00103 00104 extern void GLAPIENTRY 00105 _mesa_ProgramLocalParameter4dvARB(GLenum target, GLuint index, 00106 const GLdouble *params); 00107 00108 00109 extern void GLAPIENTRY 00110 _mesa_ProgramLocalParameter4fARB(GLenum target, GLuint index, 00111 GLfloat x, GLfloat y, GLfloat z, GLfloat w); 00112 00113 00114 extern void GLAPIENTRY 00115 _mesa_ProgramLocalParameter4fvARB(GLenum target, GLuint index, 00116 const GLfloat *params); 00117 00118 00119 extern void GLAPIENTRY 00120 _mesa_ProgramLocalParameters4fvEXT(GLenum target, GLuint index, GLsizei count, 00121 const GLfloat *params); 00122 00123 00124 extern void GLAPIENTRY 00125 _mesa_GetProgramEnvParameterdvARB(GLenum target, GLuint index, 00126 GLdouble *params); 00127 00128 00129 extern void GLAPIENTRY 00130 _mesa_GetProgramEnvParameterfvARB(GLenum target, GLuint index, 00131 GLfloat *params); 00132 00133 00134 extern void GLAPIENTRY 00135 _mesa_GetProgramLocalParameterdvARB(GLenum target, GLuint index, 00136 GLdouble *params); 00137 00138 00139 extern void GLAPIENTRY 00140 _mesa_GetProgramLocalParameterfvARB(GLenum target, GLuint index, 00141 GLfloat *params); 00142 00143 00144 extern void GLAPIENTRY 00145 _mesa_GetProgramivARB(GLenum target, GLenum pname, GLint *params); 00146 00147 00148 extern void GLAPIENTRY 00149 _mesa_GetProgramStringARB(GLenum target, GLenum pname, GLvoid *string); 00150 00151 00152 #endif Generated on Fri May 25 2012 04:18:45 for ReactOS by
1.7.6.1
|