| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 ['win', 'd3d9']) | 53 ['win', 'd3d9']) |
| 54 self.Fail('WebglExtension.WEBGL_compressed_texture_etc1', | 54 self.Fail('WebglExtension.WEBGL_compressed_texture_etc1', |
| 55 ['win', 'd3d9']) | 55 ['win', 'd3d9']) |
| 56 | 56 |
| 57 self.Fail('WebglExtension.WEBGL_depth_texture', | 57 self.Fail('WebglExtension.WEBGL_depth_texture', |
| 58 ['win', 'amd', 'd3d9']) | 58 ['win', 'amd', 'd3d9']) |
| 59 | 59 |
| 60 self.Fail('WebglExtension.WEBGL_draw_buffers', | 60 self.Fail('WebglExtension.WEBGL_draw_buffers', |
| 61 ['win', 'd3d9']) | 61 ['win', 'd3d9']) |
| 62 | 62 |
| 63 # Android general |
| 64 self.Fail('WebglExtension.EXT_frag_depth', |
| 65 ['android']) |
| 66 self.Fail('WebglExtension.EXT_shader_texture_lod', |
| 67 ['android']) |
| 68 self.Fail('WebglExtension.WEBGL_compressed_texture_astc', |
| 69 ['android']) |
| 70 self.Fail('WebglExtension.WEBGL_compressed_texture_pvrtc', |
| 71 ['android']) |
| 72 self.Fail('WebglExtension.WEBGL_compressed_texture_s3tc', |
| 73 ['android']) |
| 74 self.Fail('WebglExtension.WEBGL_depth_texture', |
| 75 ['android']) |
| 76 self.Fail('WebglExtension.WEBGL_draw_buffers', |
| 77 ['android']) |
| 78 |
| 79 # Nexus 5 |
| 80 self.Fail('WebglExtension.OES_texture_float_linear', |
| 81 ['android', ('qualcomm', 'Adreno (TM) 330')]) |
| 82 |
| 83 # Nexus 6 |
| 84 self.Fail('WebglExtension.EXT_disjoint_timer_query', |
| 85 ['android', ('qualcomm', 'Adreno (TM) 420')]) |
| 86 self.Fail('WebglExtension.EXT_sRGB', |
| 87 ['android', ('qualcomm', 'Adreno (TM) 420')]) |
| 88 |
| 63 # ======================== | 89 # ======================== |
| 64 # Conformance expectations | 90 # Conformance expectations |
| 65 # ======================== | 91 # ======================== |
| 66 # Fails on all platforms | 92 # Fails on all platforms |
| 67 self.Fail('deqp/data/gles2/shaders/functions.html', | 93 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 68 bug=478572) | 94 bug=478572) |
| 69 self.Fail('deqp/data/gles2/shaders/scoping.html', | 95 self.Fail('deqp/data/gles2/shaders/scoping.html', |
| 70 bug=478572) | 96 bug=478572) |
| 71 self.Fail('conformance/extensions/ext-sRGB.html', | 97 self.Fail('conformance/extensions/ext-sRGB.html', |
| 72 bug=540900) | 98 bug=540900) |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 self.Fail('conformance/textures/misc/texture-npot.html', | 483 self.Fail('conformance/textures/misc/texture-npot.html', |
| 458 ['chromeos', ('intel', 0xa011)], bug=375554) | 484 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 459 self.Fail('conformance/textures/misc/texture-npot-video.html', | 485 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 460 ['chromeos', ('intel', 0xa011)], bug=375554) | 486 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 461 self.Fail('conformance/textures/misc/texture-size.html', | 487 self.Fail('conformance/textures/misc/texture-size.html', |
| 462 ['chromeos', ('intel', 0xa011)], bug=375554) | 488 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 463 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 489 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 464 ['chromeos', ('intel', 0xa011)], bug=375554) | 490 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 465 self.Skip('conformance/uniforms/uniform-default-values.html', | 491 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 466 ['chromeos', ('intel', 0xa011)], bug=375554) | 492 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |