From: Samuel Pitoiset Date: Fri, 2 Jun 2017 15:52:47 +0000 (+0200) Subject: mesa: only emit _NEW_MULTISAMPLE when coverage parameters change X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=706e31fe5a228bd357a3d8e0495d3085a3953ccf;p=mesa.git mesa: only emit _NEW_MULTISAMPLE when coverage parameters change We usually check that given parameters are different before updating the state. Signed-off-by: Samuel Pitoiset Reviewed-by: Marek Olšák --- diff --git a/src/mesa/main/multisample.c b/src/mesa/main/multisample.c index 5453e38632e..f0e7a611805 100644 --- a/src/mesa/main/multisample.c +++ b/src/mesa/main/multisample.c @@ -41,11 +41,15 @@ _mesa_SampleCoverage(GLclampf value, GLboolean invert) { GET_CURRENT_CONTEXT(ctx); - FLUSH_VERTICES(ctx, 0); + value = CLAMP(value, 0.0f, 1.0f); + + if (ctx->Multisample.SampleCoverageInvert == invert && + ctx->Multisample.SampleCoverageValue == value) + return; - ctx->Multisample.SampleCoverageValue = CLAMP(value, 0.0f, 1.0f); + FLUSH_VERTICES(ctx, _NEW_MULTISAMPLE); + ctx->Multisample.SampleCoverageValue = value; ctx->Multisample.SampleCoverageInvert = invert; - ctx->NewState |= _NEW_MULTISAMPLE; }