diff options
author | José Fonseca <[email protected]> | 2008-05-31 18:14:09 +0900 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-23 17:20:38 -0700 |
commit | 452a592ca4b1bac78eee53fb9f2f1deac7832840 (patch) | |
tree | 64f12521f97de549005661c9e680769ff1e9ce84 /src/mesa/main/pixel.c | |
parent | 9118b02fd0e4c5c472d7dbf211eec350a1d37ea4 (diff) |
mesa: Apply MSVC portability fixes from Alan Hourihane.
Diffstat (limited to 'src/mesa/main/pixel.c')
-rw-r--r-- | src/mesa/main/pixel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/pixel.c b/src/mesa/main/pixel.c index 2b42490a110..c98506b2bb0 100644 --- a/src/mesa/main/pixel.c +++ b/src/mesa/main/pixel.c @@ -114,7 +114,7 @@ store_pixelmap(GLcontext *ctx, GLenum map, GLsizei mapsize, /* special case */ ctx->PixelMaps.StoS.Size = mapsize; for (i = 0; i < mapsize; i++) { - ctx->PixelMaps.StoS.Map[i] = IROUND(values[i]); + ctx->PixelMaps.StoS.Map[i] = (GLfloat)IROUND(values[i]); } break; case GL_PIXEL_MAP_I_TO_I: |