diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-07-15 19:54:25 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-07-21 20:33:42 -0600 |
commit | e3ca92aa28e2bf28e72cea340d9c8d5c9bb48089 (patch) | |
tree | b59bab4a5ba1e12552a8f47282c5161db7b96237 /src/mesa/shader/arbprogram.h | |
parent | 883097053d1d3550cab92362a07f413e110520ae (diff) |
mesa: refactor: move _mesa_Bind/Gen/DeleteProgram() to arbprogram.c
No API-level functions now in program.c.
Diffstat (limited to 'src/mesa/shader/arbprogram.h')
-rw-r--r-- | src/mesa/shader/arbprogram.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/shader/arbprogram.h b/src/mesa/shader/arbprogram.h index 233f662965..6fe76267be 100644 --- a/src/mesa/shader/arbprogram.h +++ b/src/mesa/shader/arbprogram.h @@ -28,6 +28,16 @@ extern void GLAPIENTRY +_mesa_BindProgram(GLenum target, GLuint id); + +extern void GLAPIENTRY +_mesa_DeletePrograms(GLsizei n, const GLuint *ids); + +extern void GLAPIENTRY +_mesa_GenPrograms(GLsizei n, GLuint *ids); + + +extern void GLAPIENTRY _mesa_EnableVertexAttribArrayARB(GLuint index); |