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

Unified Diff: content/browser/gpu/gpu_data_manager_testing.json

Issue 2756793003: Move GPU blacklist and driver bug workaround list from json to data struct. (Closed)
Patch Set: pure rebase Created 3 years, 9 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
Index: content/browser/gpu/gpu_data_manager_testing.json
diff --git a/content/browser/gpu/gpu_data_manager_testing.json b/content/browser/gpu/gpu_data_manager_testing.json
new file mode 100644
index 0000000000000000000000000000000000000000..0e7334f0817a59f88e6a7eac0ea00378474ada93
--- /dev/null
+++ b/content/browser/gpu/gpu_data_manager_testing.json
@@ -0,0 +1,108 @@
+{
+ "name": "gpu data manager testing",
+ "version": "1.0",
+ "entries": [
+ {
+ "id": 1,
+ "description": "GpuDataManagerImplPrivateTest.GpuSideBlacklisting.0",
+ "features": [
+ "accelerated_webgl"
+ ]
+ },
+ {
+ "id": 2,
+ "description": "GpuDataManagerImplPrivateTest.GpuSideBlacklisting.1",
+ "gl_renderer": ".*GeForce.*",
+ "features": [
+ "accelerated_2d_canvas"
+ ]
+ },
+ {
+ "id": 3,
+ "description": "GpuDataManagerImplPrivateTest.GpuSideBlacklistingWebGL.0",
+ "features": [
+ "accelerated_2d_canvas"
+ ]
+ },
+ {
+ "id": 4,
+ "description": "GpuDataManagerImplPrivateTest.GpuSideBlacklistingWebGL.1",
+ "gl_renderer": ".*GeForce.*",
+ "features": [
+ "accelerated_webgl",
+ "webgl2"
+ ]
+ },
+ {
+ "id": 5,
+ "description": "GpuDataManagerImplPrivateTest.GpuSideException",
+ "exceptions": [
+ {
+ "gl_renderer": ".*GeForce.*"
+ }
+ ],
+ "features": [
+ "accelerated_webgl"
+ ]
+ },
+ {
+ "id": 6,
+ "description": "GpuDataManagerImplPrivateTest.SetGLStrings",
+ "vendor_id": "0x8086",
+ "exceptions": [
+ {
+ "device_id": ["0x0042"],
+ "driver_version": {
+ "op": ">=",
+ "value": "8.0.2"
+ }
+ }
+ ],
+ "features": [
+ "accelerated_webgl"
+ ]
+ },
+ {
+ "id": 7,
+ "description": "GpuDataManagerImplPrivateTest.SetGLStringsNoEffects",
+ "vendor_id": "0x8086",
+ "exceptions": [
+ {
+ "device_id": ["0x0042"],
+ "driver_version": {
+ "op": ">=",
+ "value": "8.0.2"
+ }
+ }
+ ],
+ "features": [
+ "accelerated_webgl"
+ ]
+ },
+ {
+ "id" : 8,
+ "description": "GpuDataManagerImplPrivateTest.SetGLStringsDefered",
+ "vendor_id" : "0x8086",
+ "device_id" : ["0x0042"],
+ "driver_vendor" : "Mesa",
+ "driver_version" : {"op" : ">=", "value" : "8.0.0"},
+ "features" : ["accelerated_webgl"]
+ },
+ {
+ "id": 9,
+ "description": "GpuDataManagerImplPrivateTest.BlacklistAllFeatures",
+ "features": [
+ "all"
+ ]
+ },
+ {
+ "id": 10,
+ "description": "GpuDataManagerImplPrivateTest.UpdateActiveGpu",
+ "vendor_id": "0x8086",
+ "multi_gpu_category": "active",
+ "features": [
+ "accelerated_webgl"
+ ]
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698