summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_context.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2001-02-24 18:25:52 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2001-02-24 18:25:52 +0000
commitfeca368c2995e5c861e71253f3c53ebb231919b2 (patch)
tree5444b8df19bed7ceae5b8baad3e15222bd5ce976 /src/mesa/swrast/s_context.c
parent0d04827f6dd99bd2fb8055ccfff03482802e8500 (diff)
Template work
Diffstat (limited to 'src/mesa/swrast/s_context.c')
-rw-r--r--src/mesa/swrast/s_context.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c
index 4f4ea3ee95..6f7ad2a4da 100644
--- a/src/mesa/swrast/s_context.c
+++ b/src/mesa/swrast/s_context.c
@@ -1,4 +1,4 @@
-/* $Id: s_context.c,v 1.14 2001/02/16 18:56:46 keithw Exp $ */
+/* $Id: s_context.c,v 1.15 2001/02/24 18:25:52 keithw Exp $ */
/*
* Mesa 3-D graphics library
@@ -102,13 +102,6 @@ _swrast_update_rasterflags( GLcontext *ctx )
RasterMask |= MULTI_DRAW_BIT; /* all color index bits disabled */
}
- if ( ctx->Viewport.X<0
- || ctx->Viewport.X + ctx->Viewport.Width > ctx->DrawBuffer->Width
- || ctx->Viewport.Y<0
- || ctx->Viewport.Y + ctx->Viewport.Height > ctx->DrawBuffer->Height) {
- RasterMask |= WINCLIP_BIT;
- }
-
SWRAST_CONTEXT(ctx)->_RasterMask = RasterMask;
}