From: Brian Paul Date: Mon, 15 Sep 2008 23:10:04 +0000 (-0600) Subject: mesa: fix MSAA enable state in update_multisample() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1f5fbe1cb937bc639cc335acfcfb8c09dfeb3ec;p=mesa.git mesa: fix MSAA enable state in update_multisample() --- diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 344af91e172..d355f78a0ef 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -295,10 +295,10 @@ static void update_multisample(GLcontext *ctx) { ctx->Multisample._Enabled = GL_FALSE; - if (ctx->DrawBuffer) { - if (ctx->DrawBuffer->Visual.sampleBuffers) - ctx->Multisample._Enabled = GL_TRUE; - } + if (ctx->Multisample.Enabled && + ctx->DrawBuffer && + ctx->DrawBuffer->Visual.sampleBuffers) + ctx->Multisample._Enabled = GL_TRUE; }