diff options
author | Mathias Fröhlich <[email protected]> | 2011-12-26 21:45:56 +0100 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2011-12-26 21:47:06 +0100 |
commit | 31bf243a92454758fb4b8efc6bd8ccac99b67b6e (patch) | |
tree | b1ca458aa372bfdc418f8a852cb5176d46f3b3dc /src/mesa/main | |
parent | 5584a8eb196b2fc71c34e7a3becb5bc7a06ecd7c (diff) |
mesa: remove leftovers from color indexed rendering.
Remove gl_light::_dli and gl_light::_sli.
Both are only used for a value previously used in
color indexed rendering. Also both variables are only used
and never written.
Signed-off-by: Mathias Froehlich <[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 02452aa68f9..7068d5aff4d 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -683,8 +683,6 @@ struct gl_light GLfloat _MatAmbient[2][3]; /**< material ambient * light ambient */ GLfloat _MatDiffuse[2][3]; /**< material diffuse * light diffuse */ GLfloat _MatSpecular[2][3]; /**< material spec * light specular */ - GLfloat _dli; /**< CI diffuse light intensity */ - GLfloat _sli; /**< CI specular light intensity */ /*@}*/ }; |