| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 363 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 364 self.Fail('conformance/textures/svg_image/' + | 364 self.Fail('conformance/textures/svg_image/' + |
| 365 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', | 365 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', |
| 366 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 366 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 367 self.Fail('deqp/data/gles2/shaders/preprocessor.html', | 367 self.Fail('deqp/data/gles2/shaders/preprocessor.html', |
| 368 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 368 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 369 self.Fail('conformance/glsl/misc/shader-with-_webgl-identifier.vert.html', | 369 self.Fail('conformance/glsl/misc/shader-with-_webgl-identifier.vert.html', |
| 370 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) | 370 ['android', ('qualcomm', 'Adreno (TM) 420')], bug=611945) |
| 371 | 371 |
| 372 # Nexus 9 | 372 # Nexus 9 |
| 373 self.Fail('deqp/data/gles2/shaders/functions.html', |
| 374 ['android', ('nvidia', 'NVIDIA Tegra')], bug=478572) |
| 373 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', | 375 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', |
| 374 ['android', ('nvidia', 'NVIDIA Tegra')]) | 376 ['android', ('nvidia', 'NVIDIA Tegra')]) |
| 375 | 377 |
| 376 # ======================== | 378 # ======================== |
| 377 # Conformance expectations | 379 # Conformance expectations |
| 378 # ======================== | 380 # ======================== |
| 379 # Fails on all platforms | 381 # Fails on all platforms |
| 380 | 382 |
| 381 # We need to add WebGL 1 check in command buffer that format/type from | 383 # We need to add WebGL 1 check in command buffer that format/type from |
| 382 # TexSubImage2D have to match the current texture's. | 384 # TexSubImage2D have to match the current texture's. |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 self.Fail('conformance/textures/misc/texture-npot.html', | 784 self.Fail('conformance/textures/misc/texture-npot.html', |
| 783 ['chromeos', ('intel', 0xa011)], bug=375554) | 785 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 784 self.Fail('conformance/textures/misc/texture-npot-video.html', | 786 self.Fail('conformance/textures/misc/texture-npot-video.html', |
| 785 ['chromeos', ('intel', 0xa011)], bug=375554) | 787 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 786 self.Fail('conformance/textures/misc/texture-size.html', | 788 self.Fail('conformance/textures/misc/texture-size.html', |
| 787 ['chromeos', ('intel', 0xa011)], bug=375554) | 789 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 788 self.Fail('conformance/uniforms/gl-uniform-arrays.html', | 790 self.Fail('conformance/uniforms/gl-uniform-arrays.html', |
| 789 ['chromeos', ('intel', 0xa011)], bug=375554) | 791 ['chromeos', ('intel', 0xa011)], bug=375554) |
| 790 self.Skip('conformance/uniforms/uniform-default-values.html', | 792 self.Skip('conformance/uniforms/uniform-default-values.html', |
| 791 ['chromeos', ('intel', 0xa011)], bug=375554) | 793 ['chromeos', ('intel', 0xa011)], bug=375554) |
| OLD | NEW |