OLD | NEW |
---|---|
1 // Determines whether a certain driver bug exists in the current system. | 1 // Determines whether a certain driver bug exists in the current system. |
2 // A valid gpu_driver_bug_list.json file are in the format of | 2 // A valid gpu_driver_bug_list.json file are in the format of |
3 // { | 3 // { |
4 // "version": "x.y", | 4 // "version": "x.y", |
5 // "entries": [ | 5 // "entries": [ |
6 // { // entry 1 | 6 // { // entry 1 |
7 // }, | 7 // }, |
8 // ... | 8 // ... |
9 // { // entry n | 9 // { // entry n |
10 // } | 10 // } |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
84 // | 84 // |
85 // FLOAT includes "op" "value", and "value2". "op" can be any of the | 85 // FLOAT includes "op" "value", and "value2". "op" can be any of the |
86 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is | 86 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is |
87 // only used if "op" is "between". "value" is used for all "op" values except | 87 // only used if "op" is "between". "value" is used for all "op" values except |
88 // "any". "value" and "value2" are valid float numbers. | 88 // "any". "value" and "value2" are valid float numbers. |
89 // INT is very much like FLOAT, except that the values need to be integers. | 89 // INT is very much like FLOAT, except that the values need to be integers. |
90 | 90 |
91 { | 91 { |
92 "name": "gpu driver bug list", | 92 "name": "gpu driver bug list", |
93 // Please update the version number whenever you change this file. | 93 // Please update the version number whenever you change this file. |
94 "version": "1.1", | 94 "version": "1.2", |
95 "entries": [ | 95 "entries": [ |
96 { | 96 { |
97 "id": 1, | 97 "id": 1, |
98 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly", | 98 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly", |
99 "os": { | 99 "os": { |
100 "type": "android" | 100 "type": "android" |
101 }, | 101 }, |
102 "gl_vendor": { | 102 "gl_vendor": { |
103 "op": "beginwith", | 103 "op": "beginwith", |
104 "value": "Imagination" | 104 "value": "Imagination" |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
299 "os": { | 299 "os": { |
300 "type": "android" | 300 "type": "android" |
301 }, | 301 }, |
302 "gl_vendor": { | 302 "gl_vendor": { |
303 "op": "beginwith", | 303 "op": "beginwith", |
304 "value": "Qualcomm" | 304 "value": "Qualcomm" |
305 }, | 305 }, |
306 "features": [ | 306 "features": [ |
307 "disable_depth_texture" | 307 "disable_depth_texture" |
308 ] | 308 ] |
309 }, | |
310 { | |
311 "id": 18, | |
Ken Russell (switch to Gerrit)
2013/04/05 23:54:37
Please add a description. "Disable EXT_draw_buffer
| |
312 "os": { | |
313 "type": "macosx" | |
314 }, | |
315 "vendor_id": "0x10de", | |
316 "device_id": ["0x0fd5"], | |
317 "multi_gpu_category": "any", | |
318 "features": [ | |
319 "disable_ext_draw_buffers" | |
320 ] | |
309 } | 321 } |
310 ] | 322 ] |
311 } | 323 } |
OLD | NEW |