summaryrefslogtreecommitdiff
path: root/src/i830_accel.c
diff options
context:
space:
mode:
authorOwain G. Ainsworth <oga@openbsd.org>2009-01-13 17:09:00 +0000
committerKristian Høgsberg <krh@redhat.com>2009-01-20 12:11:01 -0500
commitc82adfd0169317efb6c2f9de0f315651f9adbae1 (patch)
treee87d36aeae818ad1d57158be11b48c3e35754fb5 /src/i830_accel.c
parentada44c1c0edcd3ea9e41ed6b6fdb2bf0e87c9c67 (diff)
Remove triple-buffering support
It never worked with any upstream linux kernel, and is quite heavily deprecated. A new solution based around DRI2 will probably be forthcoming. Pageflipping itself is next.
Diffstat (limited to 'src/i830_accel.c')
-rw-r--r--src/i830_accel.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/i830_accel.c b/src/i830_accel.c
index 5ee53bb1..9155c927 100644
--- a/src/i830_accel.c
+++ b/src/i830_accel.c
@@ -255,11 +255,6 @@ I830SelectBuffer(ScrnInfoPtr pScrn, int buffer)
if (pI830->back_buffer->tiling == TILE_YMAJOR)
return FALSE;
break;
- case I830_SELECT_THIRD:
- pI830->bufferOffset = pI830->third_buffer->offset;
- if (pI830->third_buffer->tiling == TILE_YMAJOR)
- return FALSE;
- break;
case I830_SELECT_DEPTH:
pI830->bufferOffset = pI830->depth_buffer->offset;
if (pI830->depth_buffer->tiling == TILE_YMAJOR)