diff options
author | Ian Romanick <[email protected]> | 2003-05-30 21:37:14 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2003-05-30 21:37:14 +0000 |
commit | 882caa18c6c551cbe60f205795b00a6a5361a986 (patch) | |
tree | fd8226be22109e848b87d2d7e9df909b2db16026 /src/mesa/tnl | |
parent | b2a4aecd806fc7b492534e329d029e002ff07d79 (diff) |
Added support for NV_light_max_exponent.
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_imm_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_imm_api.c b/src/mesa/tnl/t_imm_api.c index cc7f42f3847..9274d6f9be3 100644 --- a/src/mesa/tnl/t_imm_api.c +++ b/src/mesa/tnl/t_imm_api.c @@ -1319,11 +1319,11 @@ _tnl_Materialfv( GLenum face, GLenum pname, const GLfloat *params ) COPY_4FV( mat[1].Emission, params ); } if (bitmask & FRONT_SHININESS_BIT) { - GLfloat shininess = CLAMP( params[0], 0.0F, 128.0F ); + GLfloat shininess = CLAMP( params[0], 0.0F, ctx->Const.MaxShininess ); mat[0].Shininess = shininess; } if (bitmask & BACK_SHININESS_BIT) { - GLfloat shininess = CLAMP( params[0], 0.0F, 128.0F ); + GLfloat shininess = CLAMP( params[0], 0.0F, ctx->Const.MaxShininess ); mat[1].Shininess = shininess; } if (bitmask & FRONT_INDEXES_BIT) { |