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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 2496813002: [Command buffer] workaround the framebuffer completeness bug for Intel Mac (Closed)
Patch Set: apply the workaround to all Mac vendors, not only Mac Intel Created 4 years, 1 month 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 08ee862d6240d20f77570e0cd5b743ff654def62..114c6772a8ed6377d36ecb9a6f17463ed6510cae 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.16",
+ "version": "9.17",
"entries": [
{
"id": 1,
@@ -2208,6 +2208,17 @@ LONG_STRING_CONST(
"features": [
"remove_invariant_and_centroid_for_essl3"
]
+ },
+ {
+ "id": 204,
+ "description": "return framebuffer complete if read buffer or draw buffers have no image on Intel Mac",
qiankun 2016/11/11 15:30:48 return -> Return This workaround should be not Int
yunchao 2016/11/15 16:04:34 Done.
+ "cr_bugs": [630800],
+ "os": {
+ "type": "macosx"
+ },
+ "features": [
+ "adjust_framebuffer_complete_status"
+ ]
}
]
// Please update the version number at beginning of this file whenever you

Powered by Google App Engine
This is Rietveld 408576698