summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2012-12-18 15:49:47 -0500
committerAlex Deucher <alexdeucher@gmail.com>2012-12-18 15:49:47 -0500
commitcee7d61b144162974238b282d76a70aa2f14cc0d (patch)
tree5dbbae7875993255c42025b533bb1965a275518a
parent3c7d024c2671dac541b8f2daed55040f4fd5d62d (diff)
exa/Xv: fix coordinate limits on AVIVO IGPs
RS6xx asics are r4xx derived, but seem to have r3xx limitations as far as clipping is concerned. Spotted by Michel on IRC. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=58469 Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
-rw-r--r--src/radeon.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/radeon.h b/src/radeon.h
index 13f224f2..0ad14114 100644
--- a/src/radeon.h
+++ b/src/radeon.h
@@ -217,11 +217,11 @@ typedef enum {
(info->ChipFamily == CHIP_FAMILY_RV560) || \
(info->ChipFamily == CHIP_FAMILY_RV570))
+/* RS6xx, RS740 are technically R4xx as well, but the
+ * clipping hardware seems to follow the r3xx restrictions
+ */
#define IS_R400_3D ((info->ChipFamily == CHIP_FAMILY_R420) || \
- (info->ChipFamily == CHIP_FAMILY_RV410) || \
- (info->ChipFamily == CHIP_FAMILY_RS690) || \
- (info->ChipFamily == CHIP_FAMILY_RS600) || \
- (info->ChipFamily == CHIP_FAMILY_RS740))
+ (info->ChipFamily == CHIP_FAMILY_RV410))
#define IS_R300_3D ((info->ChipFamily == CHIP_FAMILY_R300) || \
(info->ChipFamily == CHIP_FAMILY_RV350) || \