| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 self.Fail('WebglExtension.WEBGL_compressed_texture_pvrtc', | 70 self.Fail('WebglExtension.WEBGL_compressed_texture_pvrtc', |
| 71 ['android']) | 71 ['android']) |
| 72 self.Fail('WebglExtension.WEBGL_compressed_texture_s3tc', | 72 self.Fail('WebglExtension.WEBGL_compressed_texture_s3tc', |
| 73 ['android']) | 73 ['android']) |
| 74 self.Fail('WebglExtension.WEBGL_depth_texture', | 74 self.Fail('WebglExtension.WEBGL_depth_texture', |
| 75 ['android']) | 75 ['android']) |
| 76 self.Fail('WebglExtension.WEBGL_draw_buffers', | 76 self.Fail('WebglExtension.WEBGL_draw_buffers', |
| 77 ['android']) | 77 ['android']) |
| 78 | 78 |
| 79 # Nexus 5 | 79 # Nexus 5 |
| 80 self.Fail('WebglExtension.EXT_disjoint_timer_query', |
| 81 ['android', ('qualcomm', 'Adreno (TM) 330')]) |
| 80 self.Fail('WebglExtension.OES_texture_float_linear', | 82 self.Fail('WebglExtension.OES_texture_float_linear', |
| 81 ['android', ('qualcomm', 'Adreno (TM) 330')]) | 83 ['android', ('qualcomm', 'Adreno (TM) 330')]) |
| 82 | 84 |
| 83 # Nexus 6 | 85 # Nexus 6 |
| 84 self.Fail('WebglExtension.EXT_disjoint_timer_query', | 86 self.Fail('WebglExtension.EXT_disjoint_timer_query', |
| 85 ['android', ('qualcomm', 'Adreno (TM) 420')]) | 87 ['android', ('qualcomm', 'Adreno (TM) 420')]) |
| 86 self.Fail('WebglExtension.EXT_sRGB', | 88 self.Fail('WebglExtension.EXT_sRGB', |
| 87 ['android', ('qualcomm', 'Adreno (TM) 420')]) | 89 ['android', ('qualcomm', 'Adreno (TM) 420')]) |
| 88 | 90 |
| 89 # ======================== | 91 # ======================== |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 self.Fail('conformance/textures/misc/texture-npot.html', | 482 self.Fail('conformance/textures/misc/texture-npot.html', |
| 481 ['chromeos', ('intel', 0xa011)], bug=375554) | 483 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 482 self.Fail('conformance/textures/misc/texture-npot-video.html', | 484 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 483 ['chromeos', ('intel', 0xa011)], bug=375554) | 485 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 484 self.Fail('conformance/textures/misc/texture-size.html', | 486 self.Fail('conformance/textures/misc/texture-size.html', |
| 485 ['chromeos', ('intel', 0xa011)], bug=375554) | 487 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 486 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 488 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 487 ['chromeos', ('intel', 0xa011)], bug=375554) | 489 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 488 self.Skip('conformance/uniforms/uniform-default-values.html', | 490 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 489 ['chromeos', ('intel', 0xa011)], bug=375554) | 491 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |