| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 self.Fail('WebglExtension_WEBGL_compressed_texture_s3tc', | 83 self.Fail('WebglExtension_WEBGL_compressed_texture_s3tc', |
| 84 ['android']) | 84 ['android']) |
| 85 self.Fail('WebglExtension_WEBGL_depth_texture', | 85 self.Fail('WebglExtension_WEBGL_depth_texture', |
| 86 ['android']) | 86 ['android']) |
| 87 self.Fail('WebglExtension_WEBGL_draw_buffers', | 87 self.Fail('WebglExtension_WEBGL_draw_buffers', |
| 88 ['android']) | 88 ['android']) |
| 89 | 89 |
| 90 # Nexus 5 | 90 # Nexus 5 |
| 91 self.Fail('WebglExtension_OES_texture_float_linear', | 91 self.Fail('WebglExtension_OES_texture_float_linear', |
| 92 ['android', ('qualcomm', 'Adreno (TM) 330')]) | 92 ['android', ('qualcomm', 'Adreno (TM) 330')]) |
| 93 self.Fail('conformance/more/functions/vertexAttribPointerBadArgs.html', |
| 94 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=678850) |
| 95 self.Fail('conformance/attribs/gl-vertexattribpointer.html', |
| 96 ['android', ('qualcomm', 'Adreno (TM) 330')], bug=678850) |
| 93 | 97 |
| 94 # Nexus 5X | 98 # Nexus 5X |
| 95 self.Fail('WebglExtension_EXT_sRGB', | 99 self.Fail('WebglExtension_EXT_sRGB', |
| 96 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) | 100 ['android', ('qualcomm', 'Adreno (TM) 418')], bug=610951) |
| 97 | 101 |
| 98 # Nexus 6 (Adreno 420) and 6P (Adreno 430) | 102 # Nexus 6 (Adreno 420) and 6P (Adreno 430) |
| 99 self.Fail('WebglExtension_EXT_sRGB', | 103 self.Fail('WebglExtension_EXT_sRGB', |
| 100 ['android', | 104 ['android', |
| 101 ('qualcomm', 'Adreno (TM) 420'), | 105 ('qualcomm', 'Adreno (TM) 420'), |
| 102 ('qualcomm', 'Adreno (TM) 430')]) | 106 ('qualcomm', 'Adreno (TM) 430')]) |
| (...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 871 self.Fail('conformance/textures/misc/texture-npot.html', | 875 self.Fail('conformance/textures/misc/texture-npot.html', |
| 872 ['chromeos', ('intel', 0xa011)], bug=375554) | 876 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 873 self.Fail('conformance/textures/misc/texture-npot-video.html', | 877 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 874 ['chromeos', ('intel', 0xa011)], bug=375554) | 878 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 875 self.Fail('conformance/textures/misc/texture-size.html', | 879 self.Fail('conformance/textures/misc/texture-size.html', |
| 876 ['chromeos', ('intel', 0xa011)], bug=375554) | 880 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 877 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 881 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 878 ['chromeos', ('intel', 0xa011)], bug=375554) | 882 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 879 self.Skip('conformance/uniforms/uniform-default-values.html', | 883 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 880 ['chromeos', ('intel', 0xa011)], bug=375554) | 884 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |