From 443e530194eca113da34678f50ed30f50ba135d4 Mon Sep 17 00:00:00 2001 From: Boris Brezillon Date: Wed, 26 Jun 2019 11:16:31 +0200 Subject: [PATCH] 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 --- 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); -- 2.30.2