diff options
author | José Fonseca <[email protected]> | 2008-05-31 18:14:09 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-05-31 18:55:40 +0900 |
commit | 53174afeeb68a79e471185cb463c13ff90af698f (patch) | |
tree | 9e48b55cda10c585d7a7a5a2423df9c212dfede7 /src/mesa/main/light.c | |
parent | 45b2c23d7a2f1bd723d0719b13470125de09c243 (diff) |
mesa: Apply MSVC portability fixes from Alan Hourihane.
Diffstat (limited to 'src/mesa/main/light.c')
-rw-r--r-- | src/mesa/main/light.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/light.c b/src/mesa/main/light.c index f9715b4865c..f37d1f216fc 100644 --- a/src/mesa/main/light.c +++ b/src/mesa/main/light.c @@ -1119,7 +1119,7 @@ compute_light_positions( GLcontext *ctx ) } else { /* positional light w/ homogeneous coordinate, divide by W */ - GLfloat wInv = 1.0 / light->_Position[3]; + GLfloat wInv = (GLfloat)1.0 / light->_Position[3]; light->_Position[0] *= wInv; light->_Position[1] *= wInv; light->_Position[2] *= wInv; |