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

Unified Diff: gpu/config/software_rendering_list_json.cc

Issue 1548893004: Allow WebGL readback for Mesa llvmpipe driver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added back line removed by mistake and just 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 | « content/test/gpu/page_sets/gpu_process_tests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/software_rendering_list_json.cc
diff --git a/gpu/config/software_rendering_list_json.cc b/gpu/config/software_rendering_list_json.cc
index ed1dcd66c9fb9ab42a16aeaf3814a8e8c94a81d5..f3217c8e645db48cd6f89a52dd28691e7e80b70d 100644
--- a/gpu/config/software_rendering_list_json.cc
+++ b/gpu/config/software_rendering_list_json.cc
@@ -18,7 +18,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"name": "software rendering list",
// Please update the version number whenever you change this file.
- "version": "10.18",
+ "version": "10.19",
"entries": [
{
"id": 1,
@@ -518,7 +518,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"id": 50,
"description": "Disable VMware software renderer on older Mesa",
- "cr_bugs": [145531, 332596],
+ "cr_bugs": [145531, 332596, 571899],
"os": {
"type": "linux"
},
@@ -531,6 +531,14 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
"value": "9.2.1"
},
"gl_renderer": ".*SVGA3D.*"
+ },
+ {
+ "driver_vendor": "Mesa",
+ "driver_version": {
+ "op": ">=",
+ "value": "10.1.3"
+ },
+ "gl_renderer": ".*Gallium.*llvmpipe.*"
}
],
"features": [
@@ -1212,6 +1220,28 @@ LONG_STRING_CONST(
"features": [
"accelerated_video_decode"
]
+ },
+ {
+ "id": 110,
+ "description": "Only enable WebGL for the Mesa Gallium llvmpipe driver",
+ "cr_bugs": [571899],
+ "os": {
+ "type": "linux"
+ },
+ "driver_vendor": "Mesa",
+ "gl_vendor": "VMware.*",
+ "gl_renderer": ".*Gallium.*llvmpipe.*",
+ "features": [
+ "accelerated_2d_canvas",
+ "gpu_compositing",
+ "flash_3d",
+ "flash_stage3d",
+ "flash_stage3d_baseline",
+ "accelerated_video_decode",
+ "accelerated_video_encode",
+ "panel_fitting",
+ "gpu_rasterization"
+ ]
}
]
}
« no previous file with comments | « content/test/gpu/page_sets/gpu_process_tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698