make create_new_program() static

This commit is contained in:
Brian Paul 2005-06-27 00:30:37 +00:00
parent 3f9839a52b
commit c43f03e38d
1 changed files with 4 additions and 3 deletions

View File

@ -1364,9 +1364,10 @@ static void build_tnl_program( struct tnl_program *p )
}
void create_new_program( const struct state_key *key,
struct vertex_program *program,
GLuint max_temps)
static void
create_new_program( const struct state_key *key,
struct vertex_program *program,
GLuint max_temps)
{
struct tnl_program p;