diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2005-06-27 00:30:37 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2005-06-27 00:30:37 +0000 |
commit | c43f03e38dd4bfbcbc0cc8414e2bacfbffad08a1 (patch) | |
tree | 345219cb5da32e1828859ace957931995028081e /src | |
parent | 3f9839a52b6152d349b5c6279cd7a3d3106b3999 (diff) |
make create_new_program() static
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/tnl/t_vp_build.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c index 74ab9a6892..11fdc454cd 100644 --- a/src/mesa/tnl/t_vp_build.c +++ b/src/mesa/tnl/t_vp_build.c @@ -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; |