diff options
author | Brian <[email protected]> | 2007-03-22 08:51:34 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-03-22 08:51:34 -0600 |
commit | 002762b13aa58ca569a564bb64672e343611c9ed (patch) | |
tree | 61dc35e9248a9c22c82a80712819cf140870b82a /src/mesa/tnl | |
parent | 1240eb2683043ba81e81378807170d0d7045581d (diff) |
use _mesa_alloc_instructions()
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_vp_build.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c index 2663d993049..b1c148a1367 100644 --- a/src/mesa/tnl/t_vp_build.c +++ b/src/mesa/tnl/t_vp_build.c @@ -1416,9 +1416,8 @@ create_new_program( const struct state_key *key, else p.temp_reserved = ~((1<<max_temps)-1); - p.program->Base.Instructions - = (struct prog_instruction*) MALLOC(sizeof(struct prog_instruction) * MAX_INSN); - p.program->Base.String = 0; + p.program->Base.Instructions = _mesa_alloc_instructions(MAX_INSN); + p.program->Base.String = NULL; p.program->Base.NumInstructions = p.program->Base.NumTemporaries = p.program->Base.NumParameters = |