diff options
author | Brian <[email protected]> | 2006-12-19 18:02:03 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2006-12-19 18:02:03 -0700 |
commit | 5b01c5e9d2c0283cc31981b6c85dc6392144b3db (patch) | |
tree | 754a7cf9d00ce39e8dfee63a5af6439f8c1d5be4 /src/mesa/shader/prog_parameter.h | |
parent | 46b06bdb2664b7a553fdc9e30367001ab39db804 (diff) |
Overhaul of GLSL API functions, dispatching, etc.
Diffstat (limited to 'src/mesa/shader/prog_parameter.h')
-rw-r--r-- | src/mesa/shader/prog_parameter.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/shader/prog_parameter.h b/src/mesa/shader/prog_parameter.h index c60ef543b75..fb82757d831 100644 --- a/src/mesa/shader/prog_parameter.h +++ b/src/mesa/shader/prog_parameter.h @@ -115,9 +115,11 @@ _mesa_lookup_parameter_index(const struct gl_program_parameter_list *paramList, GLsizei nameLen, const char *name); extern GLboolean -_mesa_lookup_parameter_constant(const struct gl_program_parameter_list *paramList, +_mesa_lookup_parameter_constant(const struct gl_program_parameter_list *list, const GLfloat v[], GLsizei vSize, GLint *posOut, GLuint *swizzleOut); +extern GLuint +_mesa_parameter_longest_name(const struct gl_program_parameter_list *list); #endif /* PROG_PARAMETER_H */ |