diff options
author | Pierre Willenbrock <[email protected]> | 2010-04-27 14:16:49 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-27 15:58:58 -0600 |
commit | c0b41116f1e7e8e7ebe5e0bc5b790ae7842f09d4 (patch) | |
tree | 37682135fe0f67d3be004150a92dd4359d7dcb5b /src/mesa | |
parent | 717e86738f82d5c7d7de39fbd85734febfd4c66a (diff) |
mesa: Disable scissor when begining meta operations
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/common/meta.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index d0b5cb55cd2..3d2183c6185 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) { |