Commit 2916f88a authored by jmadill's avatar jmadill Committed by Commit bot

Selectively enable D3D11 on Intel GPUs.

Now that ANGLE's overcome some performance problems it had on Intel
devices, enable D3D11 on newer drivers. Leave older drivers, in this
case prior to 8.16, disabled for now.

BUG=363721,363721

Review URL: https://codereview.chromium.org/645653002

Cr-Commit-Position: refs/heads/master@{#299150}
parent 169b875a
......@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{
"name": "gpu driver bug list",
// Please update the version number whenever you change this file.
"version": "7.5",
"version": "7.6",
"entries": [
{
"id": 1,
......@@ -824,18 +824,6 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
"use_virtualized_gl_contexts"
]
},
{
"id": 73,
"description": "Using D3D11 causes browser crashes on certain Intel GPUs",
"cr_bugs": [310808],
"os": {
"type": "win"
},
"vendor_id": "0x8086",
"features": [
"disable_d3d11"
]
},
) // LONG_STRING_CONST macro
// Avoid C2026 (string too big) error on VisualStudio.
LONG_STRING_CONST(
......@@ -1024,6 +1012,22 @@ LONG_STRING_CONST(
"features": [
"etc1_power_of_two_only"
]
},
{
"id": 92,
"description": "Old Intel drivers cannot reliably support D3D11",
"cr_bugs": [363721],
"os": {
"type": "win"
},
"vendor_id": "0x8086",
"driver_version": {
"op": "<",
"value": "8.16"
},
"features": [
"disable_d3d11"
]
}
]
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment