Mesa (master): panfrost: Remove unneeded check in panfrost_scissor_culls_everything()

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Jun 26 16:35:43 UTC 2019


Module: Mesa
Branch: master
Commit: 443e530194eca113da34678f50ed30f50ba135d4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=443e530194eca113da34678f50ed30f50ba135d4

Author: Boris Brezillon <boris.brezillon at collabora.com>
Date:   Wed Jun 26 11:16:31 2019 +0200

panfrost: Remove unneeded check in panfrost_scissor_culls_everything()

The ss local var is guaranteed to be != NULL. Get rid of this useless
check.

Signed-off-by: Boris Brezillon <boris.brezillon at collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>

---

 src/gallium/drivers/panfrost/pan_context.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/panfrost/pan_context.c b/src/gallium/drivers/panfrost/pan_context.c
index f20caaad07d..967d7116c24 100644
--- a/src/gallium/drivers/panfrost/pan_context.c
+++ b/src/gallium/drivers/panfrost/pan_context.c
@@ -1600,7 +1600,7 @@ panfrost_scissor_culls_everything(struct panfrost_context *ctx)
 
         /* Check if we're scissoring at all */
 
-        if (!(ss && ctx->rasterizer && ctx->rasterizer->base.scissor))
+        if (!(ctx->rasterizer && ctx->rasterizer->base.scissor))
                 return false;
 
         return (ss->minx == ss->maxx) || (ss->miny == ss->maxy);




More information about the mesa-commit mailing list