| 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 import os | 4 import os |
| 5 | 5 |
| 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations | 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations |
| 7 | 7 |
| 8 # See the GpuTestExpectations class for documentation. | 8 # See the GpuTestExpectations class for documentation. |
| 9 | 9 |
| 10 class WebGLConformanceExpectations(GpuTestExpectations): | 10 class WebGLConformanceExpectations(GpuTestExpectations): |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 ('qualcomm', 'Adreno (TM) 430')]) | 94 ('qualcomm', 'Adreno (TM) 430')]) |
| 95 | 95 |
| 96 # Nexus 9 | 96 # Nexus 9 |
| 97 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', | 97 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', |
| 98 ['android', ('nvidia', 'NVIDIA Tegra')]) | 98 ['android', ('nvidia', 'NVIDIA Tegra')]) |
| 99 | 99 |
| 100 # ======================== | 100 # ======================== |
| 101 # Conformance expectations | 101 # Conformance expectations |
| 102 # ======================== | 102 # ======================== |
| 103 # Fails on all platforms | 103 # Fails on all platforms |
| 104 self.Fail('conformance/misc/object-deletion-behaviour.html', bug=644957) | |
| 105 | 104 |
| 106 # We need to add WebGL 1 check in command buffer that format/type from | 105 # We need to add WebGL 1 check in command buffer that format/type from |
| 107 # TexSubImage2D have to match the current texture's. | 106 # TexSubImage2D have to match the current texture's. |
| 108 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', | 107 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', |
| 109 bug=570453) | 108 bug=570453) |
| 110 | 109 |
| 111 # OpenGL / NVIDIA failures | 110 # OpenGL / NVIDIA failures |
| 112 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', | 111 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', |
| 113 ['win', 'linux', 'nvidia', 'opengl'], bug=1007) # angle bug ID | 112 ['win', 'linux', 'nvidia', 'opengl'], bug=1007) # angle bug ID |
| 114 | 113 |
| (...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 self.Fail('conformance/textures/misc/texture-npot.html', | 707 self.Fail('conformance/textures/misc/texture-npot.html', |
| 709 ['chromeos', ('intel', 0xa011)], bug=375554) | 708 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 710 self.Fail('conformance/textures/misc/texture-npot-video.html', | 709 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 711 ['chromeos', ('intel', 0xa011)], bug=375554) | 710 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 712 self.Fail('conformance/textures/misc/texture-size.html', | 711 self.Fail('conformance/textures/misc/texture-size.html', |
| 713 ['chromeos', ('intel', 0xa011)], bug=375554) | 712 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 714 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 713 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 715 ['chromeos', ('intel', 0xa011)], bug=375554) | 714 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 716 self.Skip('conformance/uniforms/uniform-default-values.html', | 715 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 717 ['chromeos', ('intel', 0xa011)], bug=375554) | 716 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |