added _mesa_alloc_instructions() utility function

This commit is contained in:
Brian Paul
2006-08-25 15:13:25 +00:00
parent a574c804a0
commit 9983a27cbe
2 changed files with 16 additions and 0 deletions

View File

@@ -114,6 +114,9 @@ _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_alloc_instructions(GLuint numInst);
extern struct prog_instruction *
_mesa_realloc_instructions(struct prog_instruction *oldInst,
GLuint numOldInst, GLuint numNewInst);