summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/common/meta.c
diff options
context:
space:
mode:
authorPierre Willenbrock <pierre@pirsoft.de>2010-04-27 23:16:49 +0200
committerEric Anholt <eric@anholt.net>2010-04-27 17:12:39 -0700
commit2787a2e731d7628e150d607939509a05500fd29f (patch)
treeeb6ecd02d20104b7c25b423f48ffceb48562131c /src/mesa/drivers/common/meta.c
parent6ef6cdec2ebc91cfbe2b26ad88d702847c750cd0 (diff)
Disable scissor when begining meta operations
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/mesa/drivers/common/meta.c')
-rw-r--r--src/mesa/drivers/common/meta.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c
index 97d91ac381..ea9e417391 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) {