* Disabled overlay for the G4x series. This works around bug #4898.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33938 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-11-07 11:29:54 +00:00
parent bde1f75946
commit 1a29279301
@@ -113,7 +113,8 @@ get_accelerant_hook(uint32 feature, void *data)
// TODO: overlay doesn't seem to work on these chips
if (gInfo->shared_info->device_type.InGroup(INTEL_TYPE_91x)
|| gInfo->shared_info->device_type.InGroup(INTEL_TYPE_94x)
|| gInfo->shared_info->device_type.IsModel(INTEL_TYPE_965M))
|| gInfo->shared_info->device_type.IsModel(INTEL_TYPE_965M)
|| gInfo->shared_info->device_type.InGroup(INTEL_TYPE_G4x))
return NULL;
return (void*)intel_allocate_overlay_buffer;