| 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 |
| (...skipping 1884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1895 "os": { | 1895 "os": { |
| 1896 "type": "macosx" | 1896 "type": "macosx" |
| 1897 }, | 1897 }, |
| 1898 "vendor_id": "0x8086", | 1898 "vendor_id": "0x8086", |
| 1899 "features": [ | 1899 "features": [ |
| 1900 "rebind_transform_feedback_before_resume" | 1900 "rebind_transform_feedback_before_resume" |
| 1901 ] | 1901 ] |
| 1902 }, | 1902 }, |
| 1903 { | 1903 { |
| 1904 "id": 180, | 1904 "id": 180, |
| 1905 "cr_bugs": [632461], | 1905 "cr_bugs": [579060,632461], |
| 1906 "description": "eglCreateImageKHR fails for L8 textures on PowerVR", | 1906 "description": "eglCreateImageKHR fails for one component textures on Powe
rVR", |
| 1907 "os": { | 1907 "os": { |
| 1908 "type": "android" | 1908 "type": "android" |
| 1909 }, | 1909 }, |
| 1910 "gl_vendor": "Imagination.*", | 1910 "gl_vendor": "Imagination.*", |
| 1911 "gl_renderer": "PowerVR SGX.*", | 1911 "gl_renderer": "PowerVR .*", |
| 1912 "features": [ | 1912 "features": [ |
| 1913 "avda_no_eglimage_for_luminance_tex" | 1913 "avoid_one_component_egl_images" |
| 1914 ] | 1914 ] |
| 1915 }, | 1915 }, |
| 1916 { | 1916 { |
| 1917 "id": 181, | 1917 "id": 181, |
| 1918 "description": "glTexStorage* are buggy when base mipmap level is not 0", | 1918 "description": "glTexStorage* are buggy when base mipmap level is not 0", |
| 1919 "cr_bugs": [640506], | 1919 "cr_bugs": [640506], |
| 1920 "os": { | 1920 "os": { |
| 1921 "type": "macosx" | 1921 "type": "macosx" |
| 1922 }, | 1922 }, |
| 1923 "vendor_id": "0x8086", | 1923 "vendor_id": "0x8086", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1978 ] | 1978 ] |
| 1979 } | 1979 } |
| 1980 ] | 1980 ] |
| 1981 // Please update the version number at beginning of this file whenever you | 1981 // Please update the version number at beginning of this file whenever you |
| 1982 // change this file. | 1982 // change this file. |
| 1983 } | 1983 } |
| 1984 | 1984 |
| 1985 ); // LONG_STRING_CONST macro | 1985 ); // LONG_STRING_CONST macro |
| 1986 | 1986 |
| 1987 } // namespace gpu | 1987 } // namespace gpu |
| OLD | NEW |