mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 703484 - Part 3: Fix android OMTC whitelist. r=ajuma
--HG-- extra : rebase_source : e16788c85616fa92bfe724266b60435b446e9124
This commit is contained in:
parent
74a121900c
commit
edf400fa52
@ -255,14 +255,17 @@ GfxInfo::GetGfxDriverInfo()
|
||||
/* The following entry, when uncommented, will allow us to whitelist a
|
||||
* specific device. See the long comment in GetFeatureStatusImpl for more
|
||||
* info. */
|
||||
// APPEND_TO_DRIVER_BLOCKLIST( DRIVER_OS_ALL,
|
||||
// my_vendor_id, my_device_id,
|
||||
// nsIGfxInfo::FEATURE_OPENGL_LAYERS, nsIGfxInfo::FEATURE_NO_INFO,
|
||||
// DRIVER_LESS_THAN, GfxDriverInfo::allDevices );
|
||||
#ifdef MOZ_JAVA_COMPOSITOR
|
||||
APPEND_TO_DRIVER_BLOCKLIST2( DRIVER_OS_ALL,
|
||||
(nsAString&) GfxDriverInfo::GetDeviceVendor(VendorAll), GfxDriverInfo::allDevices,
|
||||
nsIGfxInfo::FEATURE_OPENGL_LAYERS, nsIGfxInfo::FEATURE_NO_INFO,
|
||||
DRIVER_COMPARISON_IGNORED, GfxDriverInfo::allDriverVersions );
|
||||
#else
|
||||
APPEND_TO_DRIVER_BLOCKLIST2( DRIVER_OS_ALL,
|
||||
(nsAString&) GfxDriverInfo::GetDeviceVendor(VendorAll), GfxDriverInfo::allDevices,
|
||||
nsIGfxInfo::FEATURE_OPENGL_LAYERS, nsIGfxInfo::FEATURE_BLOCKED_DEVICE,
|
||||
DRIVER_LESS_THAN, GfxDriverInfo::allDriverVersions );
|
||||
#endif
|
||||
}
|
||||
return *mDriverInfo;
|
||||
}
|
||||
@ -281,7 +284,7 @@ GfxInfo::GetFeatureStatusImpl(PRInt32 aFeature,
|
||||
if (aOS)
|
||||
*aOS = os;
|
||||
|
||||
// Don't evaluate special cases when evaluating the downlaoded blocklist.
|
||||
// Don't evaluate special cases when evaluating the downloaded blocklist.
|
||||
if (!aDriverInfo.Length()) {
|
||||
if (aFeature == FEATURE_OPENGL_LAYERS) {
|
||||
/* The following code is an old way to whitelist devices when we're ready.
|
||||
|
@ -689,6 +689,9 @@ nsWindow::GetLayerManager(PLayersChild*, LayersBackend, LayerManagerPersistence,
|
||||
mLayerManager = CreateBasicLayerManager();
|
||||
return mLayerManager;
|
||||
}
|
||||
|
||||
mUseAcceleratedRendering = GetShouldAccelerate();
|
||||
|
||||
#ifdef MOZ_JAVA_COMPOSITOR
|
||||
bool useCompositor = UseOffMainThreadCompositing();
|
||||
|
||||
@ -703,7 +706,6 @@ nsWindow::GetLayerManager(PLayersChild*, LayersBackend, LayerManagerPersistence,
|
||||
sFailedToCreateGLContext = true;
|
||||
}
|
||||
#endif
|
||||
mUseAcceleratedRendering = GetShouldAccelerate();
|
||||
|
||||
if (!mUseAcceleratedRendering ||
|
||||
sFailedToCreateGLContext)
|
||||
|
Loading…
Reference in New Issue
Block a user