From: Samuel Pitoiset Date: Fri, 2 Jun 2017 15:52:48 +0000 (+0200) Subject: mesa: only emit _NEW_MULTISAMPLE when sample mask changes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=af9e537be3df89fef046c827fc83acbe2199107a;p=mesa.git mesa: only emit _NEW_MULTISAMPLE when sample mask changes 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 f0e7a611805..16fe2b7ced6 100644 --- a/src/mesa/main/multisample.c +++ b/src/mesa/main/multisample.c @@ -119,6 +119,9 @@ _mesa_SampleMaski(GLuint index, GLbitfield mask) return; } + if (ctx->Multisample.SampleMaskValue == mask) + return; + FLUSH_VERTICES(ctx, _NEW_MULTISAMPLE); ctx->Multisample.SampleMaskValue = mask; }