summaryrefslogtreecommitdiff
path: root/src/mesa/shader/arbprogram.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-07-29 17:19:25 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-07-29 17:19:25 -0600
commitb7eea9a1ce9f3a28b74d77db19dcd859b6638a41 (patch)
tree79cc547405ff8d969b4408514f29c9b5815e7225 /src/mesa/shader/arbprogram.h
parentff9b6a0ae2b38e9de717a688e823fd8b665d159a (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.h10
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);