From: Boris Brezillon Date: Wed, 26 Jun 2019 09:16:31 +0000 (+0200) Subject: panfrost: Remove unneeded check in panfrost_scissor_culls_everything() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=443e530194eca113da34678f50ed30f50ba135d4;p=mesa.git 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 Reviewed-by: Alyssa Rosenzweig --- 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);