From: Ian Romanick Date: Thu, 10 Sep 2009 18:24:56 +0000 (-0700) Subject: Merge branch 'mesa_7_5_branch' into mesa_7_6_branch X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8398535331dae39ff5f52e94a69abdbf7507a343;p=mesa.git Merge branch 'mesa_7_5_branch' into mesa_7_6_branch Conflicts: src/mesa/drivers/dri/intel/intel_context.c --- 8398535331dae39ff5f52e94a69abdbf7507a343 diff --cc src/mesa/drivers/dri/intel/intel_chipset.h index 3c38f1676c9,a528d996dca..3dc8653a735 --- a/src/mesa/drivers/dri/intel/intel_chipset.h +++ b/src/mesa/drivers/dri/intel/intel_chipset.h @@@ -66,10 -66,8 +66,11 @@@ #define PCI_CHIP_Q45_G 0x2E12 #define PCI_CHIP_G45_G 0x2E22 #define PCI_CHIP_G41_G 0x2E32 + #define PCI_CHIP_B43_G 0x2E42 +#define PCI_CHIP_ILD_G 0x0042 +#define PCI_CHIP_ILM_G 0x0046 + #define IS_MOBILE(devid) (devid == PCI_CHIP_I855_GM || \ devid == PCI_CHIP_I915_GM || \ devid == PCI_CHIP_I945_GM || \ diff --cc src/mesa/drivers/dri/intel/intel_context.c index 89f99f7ffdb,aecb317eb83..2364829a1e4 --- a/src/mesa/drivers/dri/intel/intel_context.c +++ b/src/mesa/drivers/dri/intel/intel_context.c @@@ -162,12 -161,9 +162,15 @@@ intelGetString(GLcontext * ctx, GLenum case PCI_CHIP_G41_G: chipset = "Intel(R) G41"; break; + case PCI_CHIP_B43_G: + chipset = "Intel(R) B43"; + 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;