From b50964027bef249a0cc3d511de05c2464e0a1e22 Mon Sep 17 00:00:00 2001 From: Jesse Barnes Date: Tue, 15 Sep 2009 11:02:58 -0700 Subject: libdrm/intel: execbuf2 support This patch to libdrm adds support for the new execbuf2 ioctl. If detected, it will be used instead of the old ioctl. By using the new drm_intel_bufmgr_gem_enable_fenced_relocs(), you can indicate that any time a fence register is actually required for a relocation target you will call drm_intel_bo_emit_reloc_fence instead of drm_intel_bo_emit_reloc, which will reduce fence register pressure. Signed-off-by: Eric Anholt --- intel/intel_chipset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intel/intel_chipset.h') diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h index 63786b44..b4e0747e 100644 --- a/intel/intel_chipset.h +++ b/intel/intel_chipset.h @@ -81,7 +81,7 @@ (dev)->pci_device == 0x2E42 || \ (dev)->pci_device == 0x0042 || \ (dev)->pci_device == 0x0046 || \ - IS_965GM(dev) || \ + IS_I965GM(dev) || \ IS_G4X(dev)) #define IS_GM45(dev) ((dev)->pci_device == 0x2A42) -- cgit v1.2.3