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

Side by Side Diff: content/browser/gpu/gpu_driver_bug_list.json

Issue 13730008: Blacklist EXT_draw_buffers on Mac NVIDIA GeForce GT 650M. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | gpu/command_buffer/service/feature_info.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/feature_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698