Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 |
| 11 #include "gpu/config/gpu_control_list_jsons.h" | 11 #include "gpu/config/gpu_control_list_jsons.h" |
| 12 | 12 |
| 13 #define LONG_STRING_CONST(...) #__VA_ARGS__ | 13 #define LONG_STRING_CONST(...) #__VA_ARGS__ |
| 14 | 14 |
| 15 namespace gpu { | 15 namespace gpu { |
| 16 | 16 |
| 17 const char kGpuDriverBugListJson[] = LONG_STRING_CONST( | 17 const char kGpuDriverBugListJson[] = LONG_STRING_CONST( |
| 18 | 18 |
| 19 { | 19 { |
| 20 "name": "gpu driver bug list", | 20 "name": "gpu driver bug list", |
| 21 // Please update the version number whenever you change this file. | 21 // Please update the version number whenever you change this file. |
| 22 "version": "8.78", | 22 "version": "8.78", |
|
no sievers
2016/07/25 17:18:20
nit: still bump the version it since it says 'when
boliu
2016/07/25 17:20:50
Done.
| |
| 23 "entries": [ | 23 "entries": [ |
| 24 { | 24 { |
| 25 "id": 1, | 25 "id": 1, |
| 26 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly", | 26 "description": "Imagination driver doesn't like uploading lots of buffer d ata constantly", |
| 27 "os": { | 27 "os": { |
| 28 "type": "android" | 28 "type": "android" |
| 29 }, | 29 }, |
| 30 "gl_vendor": "Imagination.*", | 30 "gl_vendor": "Imagination.*", |
| 31 "features": [ | 31 "features": [ |
| 32 "use_client_side_arrays_for_stream_buffers" | 32 "use_client_side_arrays_for_stream_buffers" |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 627 "cr_bugs": [362435], | 627 "cr_bugs": [362435], |
| 628 "os": { | 628 "os": { |
| 629 "type": "android", | 629 "type": "android", |
| 630 "version": { | 630 "version": { |
| 631 "op": "<", | 631 "op": "<", |
| 632 "value": "4.3" | 632 "value": "4.3" |
| 633 } | 633 } |
| 634 }, | 634 }, |
| 635 "gl_vendor": "ARM.*", | 635 "gl_vendor": "ARM.*", |
| 636 "gl_renderer": ".*Mali-4.*", | 636 "gl_renderer": ".*Mali-4.*", |
| 637 "features": [ | 637 "disabled_extensions": [ |
| 638 "disable_multisampled_render_to_texture" | 638 "GL_EXT_multisampled_render_to_texture" |
| 639 ] | 639 ] |
| 640 }, | 640 }, |
| 641 { | 641 { |
| 642 "id": 76, | 642 "id": 76, |
| 643 "cr_bugs": [371530], | 643 "cr_bugs": [371530], |
| 644 "description": "Testing EGL sync fences was broken on IMG", | 644 "description": "Testing EGL sync fences was broken on IMG", |
| 645 "os": { | 645 "os": { |
| 646 "type": "android", | 646 "type": "android", |
| 647 "version": { | 647 "version": { |
| 648 "op": "<=", | 648 "op": "<=", |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1117 "description": "Adreno 420 support for EXT_multisampled_render_to_texture is buggy on Android < 5.1", | 1117 "description": "Adreno 420 support for EXT_multisampled_render_to_texture is buggy on Android < 5.1", |
| 1118 "cr_bugs": [490379], | 1118 "cr_bugs": [490379], |
| 1119 "os": { | 1119 "os": { |
| 1120 "type": "android", | 1120 "type": "android", |
| 1121 "version": { | 1121 "version": { |
| 1122 "op": "<", | 1122 "op": "<", |
| 1123 "value": "5.1" | 1123 "value": "5.1" |
| 1124 } | 1124 } |
| 1125 }, | 1125 }, |
| 1126 "gl_renderer": "Adreno \\(TM\\) 4.*", | 1126 "gl_renderer": "Adreno \\(TM\\) 4.*", |
| 1127 "features": [ | 1127 "disabled_extensions": [ |
| 1128 "disable_multisampled_render_to_texture" | 1128 "GL_EXT_multisampled_render_to_texture" |
| 1129 ] | 1129 ] |
| 1130 }, | 1130 }, |
| 1131 { | 1131 { |
| 1132 "id": 117, | 1132 "id": 117, |
| 1133 "description": "GL_KHR_blend_equation_advanced breaks blending on Adreno 4 xx", | 1133 "description": "GL_KHR_blend_equation_advanced breaks blending on Adreno 4 xx", |
| 1134 "cr_bugs": [488485], | 1134 "cr_bugs": [488485], |
| 1135 "os": { | 1135 "os": { |
| 1136 "type": "android" | 1136 "type": "android" |
| 1137 }, | 1137 }, |
| 1138 "gl_vendor": "Qualcomm.*", | 1138 "gl_vendor": "Qualcomm.*", |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1591 }, | 1591 }, |
| 1592 { | 1592 { |
| 1593 "id": 153, | 1593 "id": 153, |
| 1594 "cr_bugs": [594016], | 1594 "cr_bugs": [594016], |
| 1595 "description": "Vivante GC1000 with EXT_multisampled_render_to_texture fai ls glReadPixels", | 1595 "description": "Vivante GC1000 with EXT_multisampled_render_to_texture fai ls glReadPixels", |
| 1596 "os": { | 1596 "os": { |
| 1597 "type": "linux" | 1597 "type": "linux" |
| 1598 }, | 1598 }, |
| 1599 "gl_vendor": "Vivante Corporation", | 1599 "gl_vendor": "Vivante Corporation", |
| 1600 "gl_renderer": "Vivante GC1000", | 1600 "gl_renderer": "Vivante GC1000", |
| 1601 "features": [ | 1601 "disabled_extensions": [ |
| 1602 "disable_multisampled_render_to_texture" | 1602 "GL_EXT_multisampled_render_to_texture" |
| 1603 ] | 1603 ] |
| 1604 }, | 1604 }, |
| 1605 { | 1605 { |
| 1606 "id": 156, | 1606 "id": 156, |
| 1607 "cr_bugs": [598474], | 1607 "cr_bugs": [598474], |
| 1608 "description": "glEGLImageTargetTexture2DOES crashes", | 1608 "description": "glEGLImageTargetTexture2DOES crashes", |
| 1609 "os": { | 1609 "os": { |
| 1610 "type": "android", | 1610 "type": "android", |
| 1611 "version": { | 1611 "version": { |
| 1612 "op": "between", | 1612 "op": "between", |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1896 "disabled_extensions": [ | 1896 "disabled_extensions": [ |
| 1897 "GL_EXT_multisampled_render_to_texture" | 1897 "GL_EXT_multisampled_render_to_texture" |
| 1898 ] | 1898 ] |
| 1899 } | 1899 } |
| 1900 ] | 1900 ] |
| 1901 } | 1901 } |
| 1902 | 1902 |
| 1903 ); // LONG_STRING_CONST macro | 1903 ); // LONG_STRING_CONST macro |
| 1904 | 1904 |
| 1905 } // namespace gpu | 1905 } // namespace gpu |
| OLD | NEW |