| 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): | 9 def __init__(self, conformance_path): |
| 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) | 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) |
| (...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 'textureprojlodoffset.html', | 613 'textureprojlodoffset.html', |
| 614 ['linux', 'amd'], bug=483282) | 614 ['linux', 'amd'], bug=483282) |
| 615 self.Fail('deqp/functional/gles3/shadertexturefunction/texturegrad.html', | 615 self.Fail('deqp/functional/gles3/shadertexturefunction/texturegrad.html', |
| 616 ['linux', 'amd'], bug=483282) | 616 ['linux', 'amd'], bug=483282) |
| 617 self.Fail('deqp/functional/gles3/shadertexturefunction/' + | 617 self.Fail('deqp/functional/gles3/shadertexturefunction/' + |
| 618 'texelfetchoffset.html', | 618 'texelfetchoffset.html', |
| 619 ['linux', 'amd'], bug=483282) | 619 ['linux', 'amd'], bug=483282) |
| 620 | 620 |
| 621 self.Fail('deqp/functional/gles3/instancedrendering.html', | 621 self.Fail('deqp/functional/gles3/instancedrendering.html', |
| 622 ['linux', 'amd'], bug=483282) | 622 ['linux', 'amd'], bug=483282) |
| 623 self.Fail('deqp/functional/gles3/negativetextureapi.html', |
| 624 ['linux', 'amd'], bug=483282) |
| 623 self.Fail('deqp/functional/gles3/transformfeedback/*.html', | 625 self.Fail('deqp/functional/gles3/transformfeedback/*.html', |
| 624 ['linux', 'amd'], bug=483282) | 626 ['linux', 'amd'], bug=483282) |
| 625 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 627 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
| 626 ['linux', 'amd'], bug=483282) | 628 ['linux', 'amd'], bug=483282) |
| 627 | 629 |
| 628 self.Fail('conformance2/misc/uninitialized-test-2.html', | 630 self.Fail('conformance2/misc/uninitialized-test-2.html', |
| 629 ['linux', 'amd'], bug=483282) | 631 ['linux', 'amd'], bug=483282) |
| 630 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', | 632 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', |
| 631 ['linux', 'amd'], bug=483282) | 633 ['linux', 'amd'], bug=483282) |
| 632 self.Fail('conformance2/renderbuffers/framebuffer-texture-layer.html', | 634 self.Fail('conformance2/renderbuffers/framebuffer-texture-layer.html', |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 845 # self.Fail(page_name, | 847 # self.Fail(page_name, |
| 846 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 848 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 847 # self.Fail(page_name, | 849 # self.Fail(page_name, |
| 848 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 850 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 849 | 851 |
| 850 # Conflicts if between a generic os condition and a specific version | 852 # Conflicts if between a generic os condition and a specific version |
| 851 # self.Fail(page_name, | 853 # self.Fail(page_name, |
| 852 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 854 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 853 # self.Fail(page_name, | 855 # self.Fail(page_name, |
| 854 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 856 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |