diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-07-29 17:19:25 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-07-29 17:19:25 -0600 |
commit | b7eea9a1ce9f3a28b74d77db19dcd859b6638a41 (patch) | |
tree | 79cc547405ff8d969b4408514f29c9b5815e7225 /src/mesa/shader/program.h | |
parent | ff9b6a0ae2b38e9de717a688e823fd8b665d159a (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/program.h')
-rw-r--r-- | src/mesa/shader/program.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mesa/shader/program.h b/src/mesa/shader/program.h index 48fe06ab7f..d227aaa1ca 100644 --- a/src/mesa/shader/program.h +++ b/src/mesa/shader/program.h @@ -46,10 +46,6 @@ extern struct gl_program _mesa_DummyProgram; -/* - * Internal functions - */ - extern void _mesa_init_program(GLcontext *ctx); @@ -127,19 +123,5 @@ extern GLint _mesa_find_free_register(const struct gl_program *prog, GLuint regFile); -/* - * API functions common to ARB/NV_vertex/fragment_program - */ - -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); - - #endif /* PROGRAM_H */ |