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

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: Only allow WebGL feature 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 | « gpu/config/gpu_info_collector.cc ('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..6d5ecc4214616e464b8efc53ea6e949a5074d33c 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,19 +518,26 @@ 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"
},
"gl_vendor": "VMware.*",
"exceptions": [
{
- "driver_vendor": "Mesa",
piman 2016/04/14 02:46:14 Any reason for removing this?
Julien Isorce Samsung 2016/04/14 17:54:27 It is a mistake :)
"driver_version": {
"op": ">=",
"value": "9.2.1"
},
"gl_renderer": ".*SVGA3D.*"
+ },
+ {
+ "driver_vendor": "Mesa",
+ "driver_version": {
+ "op": ">=",
+ "value": "10.1.3"
+ },
+ "gl_renderer": ".*Gallium.*llvmpipe.*"
}
],
"features": [
@@ -1212,6 +1219,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"
piman 2016/04/14 02:46:14 @zmo: is there a way to do the opposite, disable a
Ken Russell (switch to Gerrit) 2016/04/14 02:56:26 Not to speak for zmo@ but I suspect the JSON file
Julien Isorce Samsung 2016/04/14 17:54:27 If there is no way to express that (zmo@ ?), and s
Zhenyao Mo 2016/04/14 20:23:45 We can implement an "exception" to the "features",
Julien Isorce Samsung 2016/04/14 21:10:06 Thx Zhenyao for your suggestion. But to avoid any
+ ]
}
]
}
« no previous file with comments | « gpu/config/gpu_info_collector.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698