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

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

Issue 16831004: Perform glReadPixels with PBOs in the gpu, if PBOs are available. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cc_unittests Created 7 years, 5 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
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 // A valid gpu_driver_bug_list.json file are in the format of 6 // A valid gpu_driver_bug_list.json file are in the format of
7 // { 7 // {
8 // "version": "x.y", 8 // "version": "x.y",
9 // "entries": [ 9 // "entries": [
10 // { // entry 1 10 // { // entry 1
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 "op": "beginwith", 368 "op": "beginwith",
369 "value": "ARM" 369 "value": "ARM"
370 }, 370 },
371 "gl_renderer": { 371 "gl_renderer": {
372 "op": "contains", 372 "op": "contains",
373 "value": "Mali-400" 373 "value": "Mali-400"
374 }, 374 },
375 "features": [ 375 "features": [
376 "use_non_zero_size_for_client_side_stream_buffers" 376 "use_non_zero_size_for_client_side_stream_buffers"
377 ] 377 ]
378 },
379 {
380 "id": 25,
381 "cr_bugs": [152225],
382 "description":
383 "Intel OSX drivers prior to mountain lion crashes when using PBOs",
384 "os": {
385 "type": "macosx",
386 "version": {
387 "op": "<",
388 "number": "10.8"
389 }
390 },
391 "vendor_id": "0x8086",
392 "features": [
393 "disable_async_readpixels"
394 ]
378 } 395 }
379 ] 396 ]
380 } 397 }
381 398
382 ); // LONG_STRING_CONST macro 399 ); // LONG_STRING_CONST macro
383 400
384 } // namespace gpu 401 } // namespace gpu
385
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/query_manager.cc ('k') | gpu/config/gpu_driver_bug_workaround_type.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698