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

Unified Diff: gpu/config/software_rendering_list_json.cc

Issue 2460943002: Lower ES3 capable requirement to GL 3.3 with extensions. (Closed)
Patch Set: address piman comment Created 4 years, 2 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_feature_type.h ('k') | ui/gl/gl_switches.h » ('j') | 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 a28b9b110724508c11f73f9eeef9c8de14fa5fac..a7428a26a4ad58130adcdec31d00d2f1eab7fbcf 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": "11.18",
+ "version": "12.0",
"entries": [
{
"id": 1,
@@ -1375,6 +1375,8 @@ LONG_STRING_CONST(
"gpu_rasterization"
]
},
+) // String split to avoid MSVC char limit.
+LONG_STRING_CONST(
{
"id": 125,
"description": "VirtualBox driver is unstable on linux.",
@@ -1387,6 +1389,21 @@ LONG_STRING_CONST(
"features": [
"all"
]
+ },
+ {
+ "id": 126,
+ "description": "Don't allow ES3 on Mac core profile < 4.1",
+ "cr_bugs": [295792],
+ "os": {
+ "type": "macosx"
+ },
+ "gl_version": {
+ "op": "<",
+ "value": "4.1"
+ },
+ "features": [
+ "webgl2"
+ ]
}
]
}
« no previous file with comments | « gpu/config/gpu_feature_type.h ('k') | ui/gl/gl_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698