diff options
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/scissor.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/scissor.c b/src/mesa/main/scissor.c index fe2e4dbff65..13934f9ca20 100644 --- a/src/mesa/main/scissor.c +++ b/src/mesa/main/scissor.c @@ -253,7 +253,9 @@ _mesa_WindowRectanglesEXT(GLenum mode, GLsizei count, const GLint *box) box += 4; } - FLUSH_VERTICES(ctx, _NEW_SCISSOR); + FLUSH_VERTICES(ctx, 0); + ctx->NewDriverState |= ctx->DriverFlags.NewWindowRectangles; + memcpy(ctx->Scissor.WindowRects, newval, sizeof(struct gl_scissor_rect) * count); ctx->Scissor.NumWindowRects = count; |