diff options
author | Keith Packard <keithp@keithp.com> | 2008-09-12 12:47:13 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-09-12 12:47:13 -0700 |
commit | 8a54e3be5c5057fe8e3c52c03401fdada7978c45 (patch) | |
tree | d405d4a56092e871de2d6c1d401cd4c598caf4e1 /src/i830_batchbuffer.c | |
parent | d8d95d8c71f2cd4bab277f44132ece7963714a5b (diff) |
Fix mis-merge of DRI2 changes related to pI830->directRenderingType
The old code had a directRendering boolean, the new one has an enum. A bunch
of the merges failed to remove the '!' in front of the old name, breaking a
bunch of 'we don't have DRI' tests.
Diffstat (limited to 'src/i830_batchbuffer.c')
-rw-r--r-- | src/i830_batchbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_batchbuffer.c b/src/i830_batchbuffer.c index 6e71b507..47fc331b 100644 --- a/src/i830_batchbuffer.c +++ b/src/i830_batchbuffer.c @@ -124,7 +124,7 @@ intel_batch_init(ScrnInfoPtr pScrn) intel_next_batch(pScrn); - if (!pI830->directRenderingType <= DRI_NONE) { + if (pI830->directRenderingType <= DRI_NONE) { if (IS_I830(pI830) || IS_845G(pI830)) { intel_bufmgr_fake_set_exec_callback(pI830->bufmgr, intel_nondrm_exec_i830, |