diff options
author | Owain G. Ainsworth <oga@openbsd.org> | 2010-05-23 14:53:11 +0100 |
---|---|---|
committer | Owain G. Ainsworth <oga@openbsd.org> | 2010-05-23 14:53:11 +0100 |
commit | 7098b4c93e80a11e2b44134c9771b4dfaeca2b34 (patch) | |
tree | ef6b0df5f5ed79e05b385687a364f352aaa9ea6f | |
parent | 60e1c382e868fa3dfe8b6bc4aa19f119e7248b0d (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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |