| OLD | NEW |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s | 4 from gpu_tests.webgl_conformance_expectations import WebGLConformanceExpectation
s |
| 5 | 5 |
| 6 # See the GpuTestExpectations class for documentation. | 6 # See the GpuTestExpectations class for documentation. |
| 7 | 7 |
| 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): | 8 class WebGL2ConformanceExpectations(WebGLConformanceExpectations): |
| 9 def __init__(self, conformance_path, url_prefixes=None): | 9 def __init__(self, conformance_path, url_prefixes=None): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 477 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
| 478 'texturelod.html', | 478 'texturelod.html', |
| 479 ['mac', 'intel'], bug=483282) | 479 ['mac', 'intel'], bug=483282) |
| 480 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 480 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
| 481 'texturegrad.html', | 481 'texturegrad.html', |
| 482 ['mac', 'intel'], bug=483282) | 482 ['mac', 'intel'], bug=483282) |
| 483 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 483 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
| 484 'textureprojgrad.html', | 484 'textureprojgrad.html', |
| 485 ['mac', 'intel'], bug=483282) | 485 ['mac', 'intel'], bug=483282) |
| 486 | 486 |
| 487 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html', | |
| 488 ['mac', 'intel'], bug=483282) | |
| 489 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html', | |
| 490 ['mac', 'intel'], bug=483282) | |
| 491 | |
| 492 # Fixed on OSX 10.11 | 487 # Fixed on OSX 10.11 |
| 493 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 488 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
| 494 ['mac', 'intel'], bug=618464) | 489 ['mac', 'intel'], bug=618464) |
| 495 | 490 |
| 496 # Linux only. | 491 # Linux only. |
| 497 self.Flaky('conformance/textures/video/' + | 492 self.Flaky('conformance/textures/video/' + |
| 498 'tex-2d-rgba-rgba-unsigned_byte.html', | 493 'tex-2d-rgba-rgba-unsigned_byte.html', |
| 499 ['linux'], bug=627525) | 494 ['linux'], bug=627525) |
| 500 self.Flaky('conformance/textures/video/' + | 495 self.Flaky('conformance/textures/video/' + |
| 501 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', | 496 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 # self.Fail(page_name, | 863 # self.Fail(page_name, |
| 869 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 864 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 870 # self.Fail(page_name, | 865 # self.Fail(page_name, |
| 871 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 866 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 872 | 867 |
| 873 # Conflicts if between a generic os condition and a specific version | 868 # Conflicts if between a generic os condition and a specific version |
| 874 # self.Fail(page_name, | 869 # self.Fail(page_name, |
| 875 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 870 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 876 # self.Fail(page_name, | 871 # self.Fail(page_name, |
| 877 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 872 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |