summaryrefslogtreecommitdiff
path: root/src/mesa/main/context.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r--src/mesa/main/context.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index bbefc32804..92dcdfd4ff 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -1640,10 +1640,8 @@ _mesa_make_current( GLcontext *newCtx, GLframebuffer *drawBuffer,
/* set initial viewport and scissor size now */
_mesa_set_viewport(newCtx, 0, 0,
drawBuffer->Width, drawBuffer->Height);
-
- _mesa_set_scissor(newCtx, 0, 0,
- drawBuffer->Width,
- drawBuffer->Height );
+ _mesa_set_scissor(newCtx, 0, 0,
+ drawBuffer->Width, drawBuffer->Height );
}
}