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

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, 3 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
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

Powered by Google App Engine
This is Rietveld 408576698