Commit 64467187 authored by jmadill@chromium.org's avatar jmadill@chromium.org

Revert "Un-blacklist D3D11 on Intel machines."

> With ongoing work on fixing bugs and performance in D3D11, as well
> as blacklisting old drviers, we might have more stable results on
> Intel. If possible we can narrow down ranges of crashing configs
> and blacklist those individually.
>
> BUG=363721

BUG=369475

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@269591 0039d316-1c4b-4281-b951-d872f2087c98
parent b02cd97c
...@@ -42,12 +42,12 @@ class PixelTestsPageSet(page_set_module.PageSet): ...@@ -42,12 +42,12 @@ class PixelTestsPageSet(page_set_module.PageSet):
url='file://../../data/gpu/pixel_css3d.html', url='file://../../data/gpu/pixel_css3d.html',
name='Pixel.CSS3DBlueBox', name='Pixel.CSS3DBlueBox',
test_rect=[0, 0, 400, 300], test_rect=[0, 0, 400, 300],
revision=4, revision=5,
page_set=self)) page_set=self))
self.AddPage(PixelTestsPage( self.AddPage(PixelTestsPage(
url='file://../../data/gpu/pixel_webgl.html', url='file://../../data/gpu/pixel_webgl.html',
name='Pixel.WebGLGreenTriangle', name='Pixel.WebGLGreenTriangle',
test_rect=[0, 0, 400, 300], test_rect=[0, 0, 400, 300],
revision=5, revision=6,
page_set=self)) page_set=self))
...@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( ...@@ -19,7 +19,7 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
{ {
"name": "gpu driver bug list", "name": "gpu driver bug list",
// Please update the version number whenever you change this file. // Please update the version number whenever you change this file.
"version": "5.3", "version": "5.4",
"entries": [ "entries": [
{ {
"id": 1, "id": 1,
...@@ -967,6 +967,18 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST( ...@@ -967,6 +967,18 @@ const char kGpuDriverBugListJson[] = LONG_STRING_CONST(
"features": [ "features": [
"use_virtualized_gl_contexts" "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"
]
} }
] ]
} }
......
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