diff options
author | Eric Anholt <eric@anholt.net> | 2009-09-30 16:29:53 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-10-06 16:22:31 -0700 |
commit | b9b159c49854d8d9d2207946bb583537bb0d48d6 (patch) | |
tree | 6f8ca392a1d5141dbee24b506ebf2b836f74d673 /src/i830_dri.c | |
parent | d26f4c493721dbb2e2cbf4efcf8d37228d1b1f3b (diff) |
Remove UMS support.
At this point, the only remaining feature regressions should be the lack of
overlay support (about to land), and the need to update the XVMC code to work
in the presence of KMS.
Acked-by: Keith Packard <keithp@keithp.com> (in principle)
Acked-by: Carl Worth <cworth@cworth.org> (in principle)
Diffstat (limited to 'src/i830_dri.c')
-rw-r--r-- | src/i830_dri.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/i830_dri.c b/src/i830_dri.c index 40d11e4c..1cf90d5d 100644 --- a/src/i830_dri.c +++ b/src/i830_dri.c @@ -126,8 +126,7 @@ I830DRI2CreateBuffers(DrawablePtr pDraw, unsigned int *attachments, int count) break; } - if (!pI830->tiling || - (!IS_I965G(pI830) && !pI830->kernel_exec_fencing)) + if (!pI830->tiling) hint = 0; pPixmap = (*pScreen->CreatePixmap)(pScreen, @@ -204,8 +203,7 @@ I830DRI2CreateBuffer(DrawablePtr pDraw, unsigned int attachment, break; } - if (!pI830->tiling || - (!IS_I965G(pI830) && !pI830->kernel_exec_fencing)) + if (!pI830->tiling) hint = 0; pPixmap = (*pScreen->CreatePixmap)(pScreen, |