diff options
author | Brian Paul <[email protected]> | 2006-05-07 16:14:13 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-05-07 16:14:13 +0000 |
commit | ca8b2351884e602f32b3e7ad23cf4beeae1c01fc (patch) | |
tree | ec60a1f2a2f77d4c7ec8d2fb72f0f8c53dc9c4ef /src/mesa/swrast/s_drawpix.c | |
parent | 8a1848bf9972f7a131a754f030ccf7c8945fba36 (diff) |
minor clean-ups around DepthScale/Bias
Diffstat (limited to 'src/mesa/swrast/s_drawpix.c')
-rw-r--r-- | src/mesa/swrast/s_drawpix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_drawpix.c b/src/mesa/swrast/s_drawpix.c index debfcde0450..b2d6b1ef79f 100644 --- a/src/mesa/swrast/s_drawpix.c +++ b/src/mesa/swrast/s_drawpix.c @@ -834,8 +834,8 @@ draw_depth_stencil_pixels(GLcontext *ctx, GLint x, GLint y, const GLvoid *pixels) { const GLint imgX = x, imgY = y; - const GLboolean scaleOrBias = - ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0; + const GLboolean scaleOrBias + = ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0; const GLfloat depthScale = ctx->DrawBuffer->_DepthMaxF; const GLuint stencilMask = ctx->Stencil.WriteMask[0]; const GLuint stencilType = (STENCIL_BITS == 8) ? |