diff options
author | Ian Romanick <[email protected]> | 2011-08-16 11:06:54 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-09-30 15:37:00 -0700 |
commit | cd76f114e608ffb93a03ac3ffc3e11876d6a057e (patch) | |
tree | 1b0294fc7b2460579ffc51122bf1cc1e6d2da170 /src/mesa/main | |
parent | a9f25160af9c12cdd675819a74fb7b1a92cfce34 (diff) |
mesa: Remove unused field gl_program::Varying
Lots of things set and copy this field around, but nothing uses it.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/mtypes.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index be43434c83a..70f33ff79b3 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1834,8 +1834,6 @@ struct gl_program /** Numbered local parameters */ GLfloat LocalParams[MAX_PROGRAM_LOCAL_PARAMS][4]; - /** Vertex/fragment shader varying vars */ - struct gl_program_parameter_list *Varying; /** Vertex program user-defined attributes */ struct gl_program_parameter_list *Attributes; |