diff options
| author | Brian Paul <brianp@vmware.com> | 2009-05-01 09:37:14 -0600 |
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2009-05-01 09:37:14 -0600 |
| commit | b9196c1fa39dd566c5d7ab340e353b77714edb5f (patch) | |
| tree | ecc4f85989f40699ccd118a00af63f68273fcb22 /src/mesa/shader/prog_optimize.h | |
| parent | 3f25219c7bf0f090502489928f0f018e62c4f6cf (diff) | |
| parent | dca190e9432d4ed122bdd534922d0c3d85791c6a (diff) | |
Merge branch 'const-buffer-changes'
Conflicts:
src/mesa/drivers/dri/i965/brw_curbe.c
src/mesa/drivers/dri/i965/brw_vs_emit.c
src/mesa/drivers/dri/i965/brw_wm_glsl.c
Diffstat (limited to 'src/mesa/shader/prog_optimize.h')
| -rw-r--r-- | src/mesa/shader/prog_optimize.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/shader/prog_optimize.h b/src/mesa/shader/prog_optimize.h index d102cfd9fc..43894a2723 100644 --- a/src/mesa/shader/prog_optimize.h +++ b/src/mesa/shader/prog_optimize.h @@ -25,7 +25,19 @@ #ifndef PROG_OPT_H #define PROG_OPT_H + +#include "main/config.h" + + struct gl_program; +struct prog_instruction; + + +extern GLboolean +_mesa_find_temp_intervals(const struct prog_instruction *instructions, + GLuint numInstructions, + GLint intBegin[MAX_PROGRAM_TEMPS], + GLint intEnd[MAX_PROGRAM_TEMPS]); extern void _mesa_optimize_program(GLcontext *ctx, struct gl_program *program); |
