Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(382)

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 2369313002: Work around CopyTexImage2D issue on Intel Mac OSX 10.12 (Closed)
Patch Set: rebase only Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/config/gpu_driver_bug_workaround_type.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 e47de9fe806d4c2fa889fdc6d8a1afde291042c8..15b721b4d0890568dc1568e1b9ce4025955ccce1 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.06",
+ "version": "9.07",
"entries": [
{
"id": 1,
@@ -2008,14 +2008,18 @@ 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": [
- "do_teximage_before_copyteximage_to_cube_map"
+ "init_one_cube_map_level_before_copyteximage"
]
},
{
@@ -2079,6 +2083,22 @@ LONG_STRING_CONST(
"features": [
"decode_encode_srgb_for_generatemipmap"
]
+ },
+ {
+ "id": 193,
+ "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_two_cube_map_levels_before_copyteximage"
+ ]
}
]
// Please update the version number at beginning of this file whenever you
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/config/gpu_driver_bug_workaround_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698