diff options
author | Jerome Glisse <[email protected]> | 2011-05-09 12:09:51 -0400 |
---|---|---|
committer | Jerome Glisse <[email protected]> | 2011-05-09 12:18:41 -0400 |
commit | b9e8ea6a2717422ea71887beda093fe1dfbd1200 (patch) | |
tree | 5fa4a296e743ef8ae02a28e1b28f6512394a2ab6 /src/gallium/drivers/r600/r600d.h | |
parent | ad904cdf98be576ba652fe1c16ab722d52365782 (diff) |
r600g: anisotropic filtering support for evergreen hw
Signed-off-by: Jerome Glisse <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600d.h')
-rw-r--r-- | src/gallium/drivers/r600/r600d.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/drivers/r600/r600d.h b/src/gallium/drivers/r600/r600d.h index c9974625dc3..9281b08bd82 100644 --- a/src/gallium/drivers/r600/r600d.h +++ b/src/gallium/drivers/r600/r600d.h @@ -1012,9 +1012,9 @@ #define S_038018_MPEG_CLAMP(x) (((x) & 0x3) << 0) #define G_038018_MPEG_CLAMP(x) (((x) >> 0) & 0x3) #define C_038018_MPEG_CLAMP 0xFFFFFFFC -#define S_038018_ANISO(x) (((x) & 0x7) << 2) -#define G_038018_ANISO(x) (((x) >> 2) & 0x7) -#define C_038018_ANISO 0xFFFFFFE3 +#define S_038018_MAX_ANISO(x) (((x) & 0x7) << 2) +#define G_038018_MAX_ANISO(x) (((x) >> 2) & 0x7) +#define C_038018_MAX_ANISO 0xFFFFFFE3 #define S_038018_PERF_MODULATION(x) (((x) & 0x7) << 5) #define G_038018_PERF_MODULATION(x) (((x) >> 5) & 0x7) #define C_038018_PERF_MODULATION 0xFFFFFF1F @@ -1093,9 +1093,9 @@ #define S_03C000_MIP_FILTER(x) (((x) & 0x3) << 17) #define G_03C000_MIP_FILTER(x) (((x) >> 17) & 0x3) #define C_03C000_MIP_FILTER 0xFFF9FFFF -#define S_03C000_ANISO(x) (((x) & 0x7) << 19) -#define G_03C000_ANISO(x) (((x) >> 19) & 0x7) -#define C_03C000_ANISO 0xFFB7FFFF +#define S_03C000_MAX_ANISO(x) (((x) & 0x7) << 19) +#define G_03C000_MAX_ANISO(x) (((x) >> 19) & 0x7) +#define C_03C000_MAX_ANISO 0xFFB7FFFF #define S_03C000_BORDER_COLOR_TYPE(x) (((x) & 0x3) << 22) #define G_03C000_BORDER_COLOR_TYPE(x) (((x) >> 22) & 0x3) #define C_03C000_BORDER_COLOR_TYPE 0xFF3FFFFF |