summaryrefslogtreecommitdiff
path: root/src/mesa/main/nvprogram.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-04-21 14:53:40 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-04-21 14:53:40 +0000
commitb0b9b798ac0620aeba15143f84c1d1ef2ddd44db (patch)
tree103bc640c3271c5abc990c535a5c7bb5509f2690 /src/mesa/main/nvprogram.c
parente4eae45512d11f29d821ec95206bb08626bd3b19 (diff)
alias ARB/NV program functions where possible
Diffstat (limited to 'src/mesa/main/nvprogram.c')
-rw-r--r--src/mesa/main/nvprogram.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/nvprogram.c b/src/mesa/main/nvprogram.c
index 00ea579b2e..511bf2e006 100644
--- a/src/mesa/main/nvprogram.c
+++ b/src/mesa/main/nvprogram.c
@@ -274,7 +274,7 @@ _mesa_BindProgramNV(GLenum target, GLuint id)
/**
* Delete a list of programs.
* \note Not compiled into display lists.
- * \note Called from the GL API dispatcher.
+ * \note Called by both glDeleteProgramsNV and glDeleteProgramsARB.
*/
void
_mesa_DeleteProgramsNV(GLsizei n, const GLuint *ids)
@@ -356,7 +356,7 @@ _mesa_ExecuteProgramNV(GLenum target, GLuint id, const GLfloat *params)
/**
* Generate a list of new program identifiers.
* \note Not compiled into display lists.
- * \note Called from the GL API dispatcher.
+ * \note Called by both glGenProgramsNV and glGenProgramsARB.
*/
void
_mesa_GenProgramsNV(GLsizei n, GLuint *ids)
@@ -803,7 +803,7 @@ _mesa_GetVertexAttribPointervNV(GLuint index, GLenum pname, GLvoid **pointer)
/**
* Determine if id names a program.
* \note Not compiled into display lists.
- * \note Called from the GL API dispatcher.
+ * \note Called from both glIsProgramNV and glIsProgramARB.
* \param id is the program identifier
* \return GL_TRUE if id is a program, else GL_FALSE.
*/