Chromium Code Reviews| Index: gpu/config/gpu_driver_bug_list_json.cc |
| diff --git a/gpu/config/gpu_driver_bug_list_json.cc b/gpu/config/gpu_driver_bug_list_json.cc |
| index e2c9f2992731ada21aa04bbd468a8505adab7700..5d521bef342c00adde510f8dfbd6774f7be79bce 100644 |
| --- a/gpu/config/gpu_driver_bug_list_json.cc |
| +++ b/gpu/config/gpu_driver_bug_list_json.cc |
| @@ -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": "9.03", |
| + "version": "9.04", |
| "entries": [ |
| { |
| "id": 1, |
| @@ -2021,10 +2021,14 @@ LONG_STRING_CONST( |
| }, |
| { |
| "id": 189, |
| - "description": "Do TexImage2D first before CopyTexImage2D for cube map texture on Intel Mac", |
| + "description": "Do TexImage2D first before CopyTexImage2D for cube map texture on Intel Mac 10.11", |
| "cr_bugs": [648197], |
| "os": { |
| - "type": "macosx" |
| + "type": "macosx", |
| + "version": { |
| + "op": "<=", |
| + "value": "10.11" |
| + } |
| }, |
| "vendor_id": "0x8086", |
| "features": [ |
| @@ -2043,6 +2047,22 @@ LONG_STRING_CONST( |
| "features": [ |
| "disable_post_sub_buffers_for_onscreen_surfaces" |
| ] |
| + }, |
| + { |
| + "id": 191, |
| + "description": "Init first two levels before CopyTexImage2D for cube map texture on Intel Mac 10.12", |
| + "cr_bugs": [648197], |
| + "os": { |
| + "type": "macosx", |
| + "version": { |
| + "op": ">=", |
| + "value": "10.12" |
| + } |
| + }, |
| + "vendor_id": "0x8086", |
| + "features": [ |
| + "init_cube_map_before_copyteximage" |
|
Ken Russell (switch to Gerrit)
2016/09/29 00:52:13
Since this is so similar to the do_teximage_before
qiankun
2016/09/29 15:43:18
Modified names of these two workarounds.
|
| + ] |
| } |
| ] |
| // Please update the version number at beginning of this file whenever you |