diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-11-20 01:06:49 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-11-20 01:08:19 -0500 |
commit | dd3eab848cf352bb96c3d01fe6028d8a4a8e451e (patch) | |
tree | cdede8f1c0563fccf7a2b7dd3355f934f4625f6f /src/radeon.h | |
parent | eb9bc133fc426e67b397e661bfd22bf62009d9d3 (diff) |
r300: render target limit is 2560
limit was increased to 4021 in r4xx.
fixes fdo bug 25191.
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Diffstat (limited to 'src/radeon.h')
-rw-r--r-- | src/radeon.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/radeon.h b/src/radeon.h index 5cdc3dbb..1e479f4e 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -382,6 +382,12 @@ typedef enum { (info->ChipFamily == CHIP_FAMILY_RV560) || \ (info->ChipFamily == CHIP_FAMILY_RV570)) +#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)) + #define IS_R300_3D ((info->ChipFamily == CHIP_FAMILY_R300) || \ (info->ChipFamily == CHIP_FAMILY_RV350) || \ (info->ChipFamily == CHIP_FAMILY_R350) || \ |