summaryrefslogtreecommitdiff
path: root/src/mesa/shader/program.h
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2005-05-10 13:56:23 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2005-05-10 13:56:23 +0000
commitf29f2fc29464780eea6d877569cd5b7032266b88 (patch)
treeef35f85d776154411f100e7bf797c8a77b93a16b /src/mesa/shader/program.h
parentab81d1fd999b1696df4c733a86b651e4c38b9bcc (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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/shader/program.h b/src/mesa/shader/program.h
index e290c92ee3..87590ceea9 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];