| OLD | NEW |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s | 4 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s |
| 5 | 5 |
| 6 # See the GpuTestExpectations class for documentation. | 6 # See the GpuTestExpectations class for documentation. |
| 7 | 7 |
| 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): | 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): |
| 9 def __init__(self, conformance_path, url_prefixes=None): | 9 def __init__(self, conformance_path, url_prefixes=None): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 ['linux', 'amd'], bug=483282) | 766 ['linux', 'amd'], bug=483282) |
| 767 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 767 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', |
| 768 ['linux', 'amd', 'no_angle'], bug=483282) | 768 ['linux', 'amd', 'no_angle'], bug=483282) |
| 769 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 769 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 770 ['linux', 'amd', 'no_angle'], bug=483282) | 770 ['linux', 'amd', 'no_angle'], bug=483282) |
| 771 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 771 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 772 ['linux', 'amd'], bug=633022) | 772 ['linux', 'amd'], bug=633022) |
| 773 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', | 773 self.Fail('conformance2/rendering/blitframebuffer-filter-outofbounds.html', |
| 774 ['linux', 'amd'], bug=655147) | 774 ['linux', 'amd'], bug=655147) |
| 775 | 775 |
| 776 self.Fail('conformance2/textures/misc/tex-srgb-mipmap.html', | |
| 777 ['linux', 'amd'], bug=634519) # WebGL 2.0.1 | |
| 778 | |
| 779 # Uniform buffer related failures | 776 # Uniform buffer related failures |
| 780 self.Fail('deqp/functional/gles3/uniformbuffers/single_struct_array.html', | 777 self.Fail('deqp/functional/gles3/uniformbuffers/single_struct_array.html', |
| 781 ['linux', 'amd'], bug=483282) | 778 ['linux', 'amd'], bug=483282) |
| 782 self.Fail('deqp/functional/gles3/uniformbuffers/single_nested_struct.html', | 779 self.Fail('deqp/functional/gles3/uniformbuffers/single_nested_struct.html', |
| 783 ['linux', 'amd'], bug=483282) | 780 ['linux', 'amd'], bug=483282) |
| 784 self.Fail('deqp/functional/gles3/uniformbuffers/' + | 781 self.Fail('deqp/functional/gles3/uniformbuffers/' + |
| 785 'single_nested_struct_array.html', | 782 'single_nested_struct_array.html', |
| 786 ['linux', 'amd'], bug=483282) | 783 ['linux', 'amd'], bug=483282) |
| 787 self.Fail('deqp/functional/gles3/uniformbuffers/multi_basic_types.html', | 784 self.Fail('deqp/functional/gles3/uniformbuffers/multi_basic_types.html', |
| 788 ['linux', 'amd'], bug=483282) | 785 ['linux', 'amd'], bug=483282) |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 # self.Fail(page_name, | 849 # self.Fail(page_name, |
| 853 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 850 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 854 # self.Fail(page_name, | 851 # self.Fail(page_name, |
| 855 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 852 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 856 | 853 |
| 857 # Conflicts if between a generic os condition and a specific version | 854 # Conflicts if between a generic os condition and a specific version |
| 858 # self.Fail(page_name, | 855 # self.Fail(page_name, |
| 859 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 856 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 860 # self.Fail(page_name, | 857 # self.Fail(page_name, |
| 861 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 858 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |