diff options
author | Brian <[email protected]> | 2008-04-07 11:16:18 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-04-07 11:23:43 -0600 |
commit | 5d1e73028aabfa1470bfed02c705a2696706f857 (patch) | |
tree | e65048e73d2d57932218b6355c39a88bbd4ffa68 /src/mesa/shader/program.h | |
parent | f3bd7bf5c913d2a58d424e995b4d441e402bd62b (diff) |
mesa: added _mesa_insert_instructions()
Also, use new _mesa_free_instructions() in a few places.
Diffstat (limited to 'src/mesa/shader/program.h')
-rw-r--r-- | src/mesa/shader/program.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/shader/program.h b/src/mesa/shader/program.h index 4b7297e4c65..414a57d39cc 100644 --- a/src/mesa/shader/program.h +++ b/src/mesa/shader/program.h @@ -87,6 +87,8 @@ _mesa_lookup_program(GLcontext *ctx, GLuint id); extern struct gl_program * _mesa_clone_program(GLcontext *ctx, const struct gl_program *prog); +extern GLboolean +_mesa_insert_instructions(struct gl_program *prog, GLuint start, GLuint count); extern struct gl_program * _mesa_combine_programs(GLcontext *ctx, |