st/mesa: make st_delete_program() static

This commit is contained in:
Brian Paul 2010-12-13 17:16:57 -07:00
parent 9b4433fe58
commit 8d8e9491df
2 changed files with 1 additions and 4 deletions

View File

@ -119,7 +119,7 @@ st_new_program(struct gl_context *ctx, GLenum target, GLuint id)
/** /**
* Called via ctx->Driver.DeleteProgram() * Called via ctx->Driver.DeleteProgram()
*/ */
void static void
st_delete_program(struct gl_context *ctx, struct gl_program *prog) st_delete_program(struct gl_context *ctx, struct gl_program *prog)
{ {
struct st_context *st = st_context(ctx); struct st_context *st = st_context(ctx);

View File

@ -36,8 +36,5 @@ struct dd_function_table;
extern void extern void
st_init_program_functions(struct dd_function_table *functions); st_init_program_functions(struct dd_function_table *functions);
extern void
st_delete_program(struct gl_context *ctx, struct gl_program *prog);
#endif #endif