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

Side by Side Diff: gpu/config/gpu_driver_bug_list_json.cc

Issue 285523002: Prefer GL_ARB_sync/ES3 fences (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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 | ui/gl/gl_fence.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 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Determines whether a certain driver bug exists in the current system. 5 // Determines whether a certain driver bug exists in the current system.
6 // The format of a valid gpu_driver_bug_list.json file is defined in 6 // The format of a valid gpu_driver_bug_list.json file is defined in
7 // <gpu/config/gpu_control_list_format.txt>. 7 // <gpu/config/gpu_control_list_format.txt>.
8 // The supported "features" can be found in 8 // The supported "features" can be found in
9 // <gpu/config/gpu_driver_bug_workaround_type.h>. 9 // <gpu/config/gpu_driver_bug_workaround_type.h>.
10 10
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 "type": "macosx" 390 "type": "macosx"
391 }, 391 },
392 "vendor_id": "0x8086", 392 "vendor_id": "0x8086",
393 "device_id": ["0x0402", "0x0406", "0x040a", "0x0412", "0x0416", "0x041a", 393 "device_id": ["0x0402", "0x0406", "0x040a", "0x0412", "0x0416", "0x041a",
394 "0x0a04", "0x0a16", "0x0a22", "0x0a26", "0x0a2a"], 394 "0x0a04", "0x0a16", "0x0a22", "0x0a26", "0x0a2a"],
395 "features": [ 395 "features": [
396 "swizzle_rgba_for_async_readpixels" 396 "swizzle_rgba_for_async_readpixels"
397 ] 397 ]
398 }, 398 },
399 { 399 {
400 "id": 29,
401 "cr_bugs": [278606],
402 "description": "Testing fences is broken on Qualcomm.",
403 "os": {
404 "type": "android"
405 },
406 "gl_vendor": {
407 "op": "beginwith",
408 "value": "Qualcomm"
409 },
410 "features": [
411 "disable_async_readpixels"
412 ]
413 },
414 {
415 "id": 30, 400 "id": 30,
416 "cr_bugs": [237931], 401 "cr_bugs": [237931],
417 "description": "Multisampling is buggy on OSX when multiple monitors are c onnected", 402 "description": "Multisampling is buggy on OSX when multiple monitors are c onnected",
418 "os": { 403 "os": {
419 "type": "macosx" 404 "type": "macosx"
420 }, 405 },
421 "features": [ 406 "features": [
422 "disable_multimonitor_multisampling" 407 "disable_multimonitor_multisampling"
423 ] 408 ]
424 }, 409 },
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
979 "features": [ 964 "features": [
980 "disable_d3d11" 965 "disable_d3d11"
981 ] 966 ]
982 } 967 }
983 ] 968 ]
984 } 969 }
985 970
986 ); // LONG_STRING_CONST macro 971 ); // LONG_STRING_CONST macro
987 972
988 } // namespace gpu 973 } // namespace gpu
OLDNEW
« no previous file with comments | « no previous file | ui/gl/gl_fence.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698