Module: Mesa Branch: master Commit: 8e41a65fc520a2bf22e4748312fa0cc67e0bd570 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8e41a65fc520a2bf22e4748312fa0cc67e0bd570
Author: Tim Rowley <[email protected]> Date: Thu Aug 25 13:00:43 2016 -0500 swr: [rasterizer core] whitespace cleanup Signed-off-by: Tim Rowley <[email protected]> --- src/gallium/drivers/swr/rasterizer/core/api.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gallium/drivers/swr/rasterizer/core/api.cpp b/src/gallium/drivers/swr/rasterizer/core/api.cpp index 3e2a67d..089ef0f 100644 --- a/src/gallium/drivers/swr/rasterizer/core/api.cpp +++ b/src/gallium/drivers/swr/rasterizer/core/api.cpp @@ -772,8 +772,6 @@ void SetupMacroTileScissors(DRAW_CONTEXT *pDC) scissorInFixedPoint.xmax -= 1; scissorInFixedPoint.ymax -= 1; } - - } // templated backend function tables @@ -799,7 +797,7 @@ void SetupPipeline(DRAW_CONTEXT *pDC) const bool bMultisampleEnable = ((rastState.sampleCount > SWR_MULTISAMPLE_1X) || rastState.forcedSampleCount) ? 1 : 0; const uint32_t centroid = ((psState.barycentricsMask & SWR_BARYCENTRIC_CENTROID_MASK) > 0) ? 1 : 0; const uint32_t canEarlyZ = (psState.forceEarlyZ || (!psState.writesODepth && !psState.usesSourceDepth && !psState.usesUAV)) ? 1 : 0; - + SWR_BARYCENTRICS_MASK barycentricsMask = (SWR_BARYCENTRICS_MASK)psState.barycentricsMask; // select backend function _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
