| 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 self.Fail('deqp/functional/gles3/shadertexturefunction/texturesize.html', | 583 self.Fail('deqp/functional/gles3/shadertexturefunction/texturesize.html', |
| 584 ['linux', 'intel'], bug=666384) | 584 ['linux', 'intel'], bug=666384) |
| 585 | 585 |
| 586 # Fails on Intel Mesa GL 3.3, passes on Intel Mesa GL 4.5. | 586 # Fails on Intel Mesa GL 3.3, passes on Intel Mesa GL 4.5. |
| 587 self.Fail('conformance2/misc/views-with-offsets.html', | 587 self.Fail('conformance2/misc/views-with-offsets.html', |
| 588 ['linux', 'intel', 'no_angle'], bug=664180) | 588 ['linux', 'intel', 'no_angle'], bug=664180) |
| 589 | 589 |
| 590 # Linux Intel with ANGLE only | 590 # Linux Intel with ANGLE only |
| 591 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', | 591 self.Fail('deqp/functional/gles3/framebufferblit/conversion_07.html', |
| 592 ['linux', 'intel', 'opengl'], bug=598902) | 592 ['linux', 'intel', 'opengl'], bug=598902) |
| 593 self.Fail('conformance2/rendering/read-draw-when-missing-image.html', | |
| 594 ['linux', 'intel', 'opengl'], bug=672719) # WebGL 2.0.1 | |
| 595 | 593 |
| 596 # Linux AMD only. | 594 # Linux AMD only. |
| 597 # It looks like AMD shader compiler rejects many valid ES3 semantics. | 595 # It looks like AMD shader compiler rejects many valid ES3 semantics. |
| 598 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 596 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 599 ['linux', 'amd'], bug=483282) | 597 ['linux', 'amd'], bug=483282) |
| 600 self.Fail('deqp/functional/gles3/multisample.html', | 598 self.Fail('deqp/functional/gles3/multisample.html', |
| 601 ['linux', 'amd'], bug=617290) | 599 ['linux', 'amd'], bug=617290) |
| 602 self.Fail('deqp/data/gles3/shaders/conversions.html', | 600 self.Fail('deqp/data/gles3/shaders/conversions.html', |
| 603 ['linux', 'amd'], bug=483282) | 601 ['linux', 'amd'], bug=483282) |
| 604 self.Skip('deqp/data/gles3/shaders/arrays.html', | 602 self.Skip('deqp/data/gles3/shaders/arrays.html', |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 860 # self.Fail(page_name, | 858 # self.Fail(page_name, |
| 861 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 859 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 862 # self.Fail(page_name, | 860 # self.Fail(page_name, |
| 863 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 861 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 864 | 862 |
| 865 # Conflicts if between a generic os condition and a specific version | 863 # Conflicts if between a generic os condition and a specific version |
| 866 # self.Fail(page_name, | 864 # self.Fail(page_name, |
| 867 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 865 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 868 # self.Fail(page_name, | 866 # self.Fail(page_name, |
| 869 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 867 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |