summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwain G. Ainsworth <oga@openbsd.org>2010-05-23 14:53:11 +0100
committerOwain G. Ainsworth <oga@openbsd.org>2010-05-23 14:53:11 +0100
commit7098b4c93e80a11e2b44134c9771b4dfaeca2b34 (patch)
treeef6b0df5f5ed79e05b385687a364f352aaa9ea6f
parent60e1c382e868fa3dfe8b6bc4aa19f119e7248b0d (diff)
Disable FBC on 915 and 945 for now.
It is causing problems with black screen when everything else seems to work.
-rw-r--r--src/i830.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830.h b/src/i830.h
index 9aae12e2..6e4d5528 100644
--- a/src/i830.h
+++ b/src/i830.h
@@ -964,7 +964,7 @@ static inline int i830_fb_compression_supported(intel_screen_private *intel)
* that device. See this bug report for more details:
* https://bugs.freedesktop.org/show_bug.cgi?id=16257
*/
- if (IS_I965GM(intel))
+ if (IS_I965GM(intel) || IS_I915GM(intel) || IS_I945GM(intel))
return FALSE;
return TRUE;
}