i915tex: Add support for 945GME
This commit is contained in:
committed by
Keith Whitwell
parent
a74eec5af5
commit
ad6351a994
@@ -130,6 +130,9 @@ intelGetString(GLcontext * ctx, GLenum name)
|
||||
case PCI_CHIP_I945_GM:
|
||||
chipset = "Intel(R) 945GM";
|
||||
break;
|
||||
case PCI_CHIP_I945_GME:
|
||||
chipset = "Intel(R) 945GME";
|
||||
break;
|
||||
default:
|
||||
chipset = "Unknown Intel Chipset";
|
||||
break;
|
||||
|
||||
@@ -385,6 +385,7 @@ extern int INTEL_DEBUG;
|
||||
#define PCI_CHIP_I915_GM 0x2592
|
||||
#define PCI_CHIP_I945_G 0x2772
|
||||
#define PCI_CHIP_I945_GM 0x27A2
|
||||
#define PCI_CHIP_I945_GME 0x27AE
|
||||
|
||||
|
||||
/* ================================================================
|
||||
|
||||
@@ -79,6 +79,7 @@ intel_miptree_create(struct intel_context *intel,
|
||||
switch (intel->intelScreen->deviceID) {
|
||||
case PCI_CHIP_I945_G:
|
||||
case PCI_CHIP_I945_GM:
|
||||
case PCI_CHIP_I945_GME:
|
||||
ok = i945_miptree_layout(mt);
|
||||
break;
|
||||
case PCI_CHIP_I915_G:
|
||||
|
||||
@@ -752,6 +752,7 @@ intelCreateContext(const __GLcontextModes * mesaVis,
|
||||
case PCI_CHIP_I915_GM:
|
||||
case PCI_CHIP_I945_G:
|
||||
case PCI_CHIP_I945_GM:
|
||||
case PCI_CHIP_I945_GME:
|
||||
return i915CreateContext(mesaVis, driContextPriv, sharedContextPrivate);
|
||||
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user