diff options
author | Courtney Goeltzenleuchter <[email protected]> | 2013-11-13 16:24:56 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-01-20 11:31:50 -0800 |
commit | d4dc359875126c432e46e3d1da8610a066d21302 (patch) | |
tree | 192fb0ceaebd5faf767c03c2540f3703091d03b0 /src/mesa/main/viewport.c | |
parent | 0e60d85029105ffdfd325186813b65232c5d2725 (diff) |
mesa: Convert gl_viewport_attrib::Near and ::Far to double
v4: Split out from a single megapatch. Suggested by Ken.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/viewport.c')
-rw-r--r-- | src/mesa/main/viewport.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/viewport.c b/src/mesa/main/viewport.c index 3bc89ab030a..8eede518f9d 100644 --- a/src/mesa/main/viewport.c +++ b/src/mesa/main/viewport.c @@ -127,8 +127,8 @@ _mesa_DepthRange(GLclampd nearval, GLclampd farval) ctx->Viewport.Far == farval) return; - ctx->Viewport.Near = (GLfloat) CLAMP(nearval, 0.0, 1.0); - ctx->Viewport.Far = (GLfloat) CLAMP(farval, 0.0, 1.0); + ctx->Viewport.Near = CLAMP(nearval, 0.0, 1.0); + ctx->Viewport.Far = CLAMP(farval, 0.0, 1.0); ctx->NewState |= _NEW_VIEWPORT; #if 1 |