diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-08-24 21:57:36 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-08-24 21:57:36 +0000 |
commit | 3b9b8de9b0bf2f1e69a450360a812090520b2b29 (patch) | |
tree | 7a8c6851bfa257face6950d168dbfe915920d635 /src/mesa/shader/program.h | |
parent | a5f2206077402f0a8700ec1348e09731e53c5bc2 (diff) |
Added _mesa_realloc_instructions() utility function.
Fixed/updated comments for parameter list functions.
Diffstat (limited to 'src/mesa/shader/program.h')
-rw-r--r-- | src/mesa/shader/program.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/shader/program.h b/src/mesa/shader/program.h index 1d91e63af5..a8535cc2cf 100644 --- a/src/mesa/shader/program.h +++ b/src/mesa/shader/program.h @@ -114,6 +114,10 @@ _mesa_delete_program(GLcontext *ctx, struct gl_program *prog); extern struct gl_program * _mesa_lookup_program(GLcontext *ctx, GLuint id); +extern struct prog_instruction * +_mesa_realloc_instructions(struct prog_instruction *oldInst, + GLuint numOldInst, GLuint numNewInst); + /** * Used for describing GL state referenced from inside ARB vertex and |