diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-25 16:59:11 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2012-07-25 17:20:21 +0100 |
commit | 8c5077e4ed055a97bf9deda59c0e9a45e42317ca (patch) | |
tree | 890052e23eebc32265f0bafd905611662bc74ee9 /src/intel_driver.c | |
parent | 954d9c6aca792098cb16a46b4ec8d5fc104b15a9 (diff) |
Assume all unknown chipsets are future gen
I think the likelihood of a new product being launched based on a 8xx
design is remote enough not to worry about.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/intel_driver.c')
-rw-r--r-- | src/intel_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel_driver.c b/src/intel_driver.c index cab7b4ee..8cb098a1 100644 --- a/src/intel_driver.c +++ b/src/intel_driver.c @@ -387,7 +387,7 @@ static Bool has_relaxed_fencing(struct intel_screen_private *intel) static Bool can_accelerate_blt(struct intel_screen_private *intel) { - if (INTEL_INFO(intel)->gen == 0) + if (INTEL_INFO(intel)->gen == -1) return FALSE; if (0 && (IS_I830(intel) || IS_845G(intel))) { |