galahad: do map/unmap counting for resources
[mesa.git] / src / gallium / drivers / i965 / brw_reg.h
index f428ec92696ad1fd55c3b47d4f9ef8711895f38c..ba10f9d5df1e0197d5ef225b15c943a3f0808fef 100644 (file)
 #define PCI_CHIP_ILM_G                  0x0046
 
 struct brw_chipset {
-   int pci_id:16;
-   int is_965:1;
-   int is_igdng:1;
-   int is_g4x:1;
-   int pad:13;
+   unsigned pci_id:16;
+   unsigned is_965:1;
+   unsigned is_igdng:1;
+   unsigned is_g4x:1;
+   unsigned pad:13;
 };
 
 
 /* XXX: hacks
  */
 #define VERT_RESULT_HPOS 0     /* not always true */
-#define VERT_RESULT_PSIZ 10000 /* disabled */
+#define VERT_RESULT_PSIZ 127   /* disabled */
 
 
 #endif