mesa: move max texture image unit constants to gl_program_constants
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_chipset.h
index 445e0854fc45d375407b6b2951a44cf4472858b5..023c12c790d4e7358672a33939215554d89810c7 100644 (file)
@@ -1,7 +1,5 @@
 #ifndef _RADEON_CHIPSET_H
 #define _RADEON_CHIPSET_H
-/* Including xf86PciInfo.h introduces a bunch of errors...
- */
 
 /* General chip classes:
  * r100 includes R100, RV100, RV200, RS100, RS200, RS250.
@@ -35,13 +33,9 @@ enum {
    CHIP_FAMILY_LAST
 };
 
-/* General classes of Radeons, as described above the device ID section */
-#define RADEON_CLASS_R100              (0 << 0)
-#define RADEON_CLASS_R200              (1 << 0)
-#define RADEON_CLASS_MASK              (3 << 0)
-
-#define RADEON_CHIPSET_TCL             (1 << 2)        /* tcl support - any radeon */
-#define RADEON_CHIPSET_BROKEN_STENCIL  (1 << 3)        /* r100 stencil bug */
-#define R200_CHIPSET_YCBCR_BROKEN      (1 << 4)        /* r200 ycbcr bug */
+#define RADEON_CHIPSET_TCL             (1 << 0)        /* tcl support - any radeon */
+#define RADEON_CHIPSET_BROKEN_STENCIL  (1 << 1)        /* r100 stencil bug */
+#define R200_CHIPSET_YCBCR_BROKEN      (1 << 2)        /* r200 ycbcr bug */
+#define RADEON_CHIPSET_DEPTH_ALWAYS_TILED (1 << 3)      /* M7 and R200s */
 
 #endif /* _RADEON_CHIPSET_H */