summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/intel_winsys/intel_lock.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-11-05 09:02:54 -0700
committerBrian <brian.paul@tungstengraphics.com>2007-11-05 09:02:54 -0700
commitbac76b71f1fed705fb5ee68bec88b82ad74de920 (patch)
tree382281673c8e8d30dd4936a82f673a9bd10acb64 /src/mesa/drivers/dri/intel_winsys/intel_lock.c
parent1cb81470b78f22708e9b83a40acb470744575ff3 (diff)
remove intel_context cliprect code
Diffstat (limited to 'src/mesa/drivers/dri/intel_winsys/intel_lock.c')
-rw-r--r--src/mesa/drivers/dri/intel_winsys/intel_lock.c33
1 files changed, 1 insertions, 32 deletions
diff --git a/src/mesa/drivers/dri/intel_winsys/intel_lock.c b/src/mesa/drivers/dri/intel_winsys/intel_lock.c
index af9b53a52b..eee1ccc6ea 100644
--- a/src/mesa/drivers/dri/intel_winsys/intel_lock.c
+++ b/src/mesa/drivers/dri/intel_winsys/intel_lock.c
@@ -65,40 +65,9 @@ intelContendedLock(struct intel_context *intel, GLuint flags)
intelUpdateScreenRotation(sPriv, sarea);
}
-
-#if 0
- if (sarea->width != intel->width ||
- sarea->height != intel->height ||
- sarea->rotation != intel->current_rotation) {
- int numClipRects = intel->numClipRects;
-
- /*
- * FIXME: Really only need to do this when drawing to a
- * common back- or front buffer.
- */
-
- /*
- * This will essentially drop the outstanding batchbuffer on the floor.
- */
- intel->numClipRects = 0;
-
- st_flush(intel->st);
-
- if (intel->batch->map != intel->batch->ptr)
- intel_batchbuffer_flush(intel->batch);
-
- intel->numClipRects = numClipRects;
-
- /* force window update */
- intel->lastStamp = 0;
-
- intel->width = sarea->width;
- intel->height = sarea->height;
- intel->current_rotation = sarea->rotation;
- }
-#endif
}
+
/* Lock the hardware and validate our state.
*/
void LOCK_HARDWARE( struct intel_context *intel )