From: Pierre Willenbrock Date: Tue, 27 Apr 2010 21:16:49 +0000 (+0200) Subject: Disable scissor when begining meta operations X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2787a2e731d7628e150d607939509a05500fd29f;p=mesa.git Disable scissor when begining meta operations Signed-off-by: Eric Anholt --- diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index 97d91ac381d..ea9e4173916 100644 --- a/src/mesa/drivers/common/meta.c +++ b/src/mesa/drivers/common/meta.c @@ -424,6 +424,7 @@ _mesa_meta_begin(GLcontext *ctx, GLbitfield state) if (state & META_SCISSOR) { save->Scissor = ctx->Scissor; /* struct copy */ + _mesa_set_enable(ctx, GL_SCISSOR_TEST, GL_FALSE); } if (state & META_SHADER) {