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

Unified Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 1873763002: gpu: Disable framebuffer discard on NVIDIA, Android, ChromeOS and Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 | « no previous file | no next file » | 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 0219d67c00fe55ae153a92fb97d9310d625210a0..32d0ceb5dc99fc306855596433c51ad91aeced96 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": "8.61",
+ "version": "8.62",
"entries": [
{
"id": 1,
@@ -1912,6 +1912,73 @@ LONG_STRING_CONST(
"features": [
"disable_overlay_ca_layers"
]
+ },
+ {
+ "id": 159,
+ "cr_bugs": [570897],
+ "description": "Framebuffer discarding can hurt performance on non-tilers",
+ "os": {
+ "type": "linux"
+ },
+ "vendor_id": "0x10de",
+ "gl_vendor": "NVIDIA.*",
+ "gl_type": "gl",
+ "features": [
+ "disable_discard_framebuffer"
+ ]
+ },
+ {
+ "id": 160,
+ "cr_bugs": [601753],
+ "description": "Framebuffer discarding not useful on NVIDIA Kepler architecture and later",
+ "os": {
+ "type": "linux"
+ },
+ "vendor_id": "0x10de",
+ "gl_vendor": "NVIDIA.*",
+ "gl_type": "gles",
+ "gl_version": {
+ "op": ">=",
+ "value": "3.0"
+ },
+ "features": [
+ "disable_discard_framebuffer"
+ ]
+ },
+ {
+ "id": 161,
+ "cr_bugs": [601753],
+ "description": "Framebuffer discarding not useful on NVIDIA Kepler architecture and later",
+ "os": {
+ "type": "chromeos"
+ },
+ "vendor_id": "0x10de",
+ "gl_vendor": "NVIDIA.*",
+ "gl_type": "gles",
+ "gl_version": {
+ "op": ">=",
+ "value": "3.0"
+ },
+ "features": [
+ "disable_discard_framebuffer"
+ ]
+ },
+ {
+ "id": 162,
+ "cr_bugs": [601753],
+ "description": "Framebuffer discarding not useful on NVIDIA Kepler architecture and later",
+ "os": {
+ "type": "android"
+ },
+ "gl_vendor": "NVIDIA.*",
+ "gl_type": "gles",
+ "gl_version": {
+ "op": ">=",
+ "value": "3.0"
+ },
+ "features": [
+ "disable_discard_framebuffer"
+ ]
}
]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698