diff options
author | Keith Whitwell <[email protected]> | 2005-05-10 13:56:23 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-05-10 13:56:23 +0000 |
commit | f29f2fc29464780eea6d877569cd5b7032266b88 (patch) | |
tree | ef35f85d776154411f100e7bf797c8a77b93a16b /src/mesa/shader/program.h | |
parent | ab81d1fd999b1696df4c733a86b651e4c38b9bcc (diff) |
reduce the use of malloc and strdup for parameter lists
Diffstat (limited to 'src/mesa/shader/program.h')
-rw-r--r-- | src/mesa/shader/program.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/shader/program.h b/src/mesa/shader/program.h index e290c92ee3c..87590ceea9a 100644 --- a/src/mesa/shader/program.h +++ b/src/mesa/shader/program.h @@ -215,6 +215,7 @@ struct program_parameter struct program_parameter_list { + GLuint Size; GLuint NumParameters; struct program_parameter *Parameters; GLfloat (*ParameterValues)[4]; |