i965: add support for new chipsets

1. new PCI ids
2. fix some 3D commands on new chipset
3. fix send instruction on new chipset
4. new VUE vertex header
5. ff_sync message (added by Zou Nan Hai <nanhai.zou@intel.com>)
6. the offset in JMPI is in unit of 64bits on new chipset
7. new cube map layout
This commit is contained in:
Xiang, Haihao
2009-07-13 10:48:43 +08:00
parent f030e2ba17
commit 2995bf0d68
33 changed files with 823 additions and 149 deletions

View File

@@ -161,6 +161,12 @@ intelGetString(GLcontext * ctx, GLenum name)
case PCI_CHIP_G41_G:
chipset = "Intel(R) G41";
break;
case PCI_CHIP_ILD_G:
chipset = "Intel(R) IGDNG_D";
break;
case PCI_CHIP_ILM_G:
chipset = "Intel(R) IGDNG_M";
break;
default:
chipset = "Unknown Intel Chipset";
break;