| 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 ('nvidia', 'NVIDIA Tegra')], bug=624621) | 542 ('nvidia', 'NVIDIA Tegra')], bug=624621) |
| 543 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', | 543 self.Fail('conformance/glsl/bugs/constant-precision-qualifier.html', |
| 544 ['android', 'android-chromium', | 544 ['android', 'android-chromium', |
| 545 ('nvidia', 'NVIDIA Tegra')], bug=624621) | 545 ('nvidia', 'NVIDIA Tegra')], bug=624621) |
| 546 | 546 |
| 547 # ======================== | 547 # ======================== |
| 548 # Conformance expectations | 548 # Conformance expectations |
| 549 # ======================== | 549 # ======================== |
| 550 # Fails on all platforms | 550 # Fails on all platforms |
| 551 | 551 |
| 552 self.Fail('conformance/glsl/bugs/' + |
| 553 'invariant-does-not-leak-across-shaders.html', |
| 554 bug=634813) |
| 555 |
| 552 # We need to add WebGL 1 check in command buffer that format/type from | 556 # We need to add WebGL 1 check in command buffer that format/type from |
| 553 # TexSubImage2D have to match the current texture's. | 557 # TexSubImage2D have to match the current texture's. |
| 554 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', | 558 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', |
| 555 bug=570453) | 559 bug=570453) |
| 556 | 560 |
| 557 self.Fail('conformance/extensions/webgl-draw-buffers.html', | 561 self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 558 bug=625365) | 562 bug=625365) |
| 559 # self.Fail('conformance/extensions/webgl-draw-buffers.html', | 563 # self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| 560 # ['win', 'intel', 'opengl'], bug=1007) # angle bug ID | 564 # ['win', 'intel', 'opengl'], bug=1007) # angle bug ID |
| 561 # self.Fail('conformance/extensions/webgl-draw-buffers.html', | 565 # self.Fail('conformance/extensions/webgl-draw-buffers.html', |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 968 self.Fail('conformance/textures/misc/texture-npot.html', | 972 self.Fail('conformance/textures/misc/texture-npot.html', |
| 969 ['chromeos', ('intel', 0xa011)], bug=375554) | 973 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 970 self.Fail('conformance/textures/misc/texture-npot-video.html', | 974 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 971 ['chromeos', ('intel', 0xa011)], bug=375554) | 975 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 972 self.Fail('conformance/textures/misc/texture-size.html', | 976 self.Fail('conformance/textures/misc/texture-size.html', |
| 973 ['chromeos', ('intel', 0xa011)], bug=375554) | 977 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 974 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 978 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 975 ['chromeos', ('intel', 0xa011)], bug=375554) | 979 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 976 self.Skip('conformance/uniforms/uniform-default-values.html', | 980 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 977 ['chromeos', ('intel', 0xa011)], bug=375554) | 981 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |