| 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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 ['linux', 'opengl'], bug=483282) | 563 ['linux', 'opengl'], bug=483282) |
| 564 self.Fail('conformance/textures/webgl_canvas/' + | 564 self.Fail('conformance/textures/webgl_canvas/' + |
| 565 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', | 565 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', |
| 566 ['linux', 'opengl'], bug=483282) | 566 ['linux', 'opengl'], bug=483282) |
| 567 self.Fail('conformance2/textures/misc/tex-unpack-params.html', | 567 self.Fail('conformance2/textures/misc/tex-unpack-params.html', |
| 568 ['linux', 'opengl'], bug=483282) | 568 ['linux', 'opengl'], bug=483282) |
| 569 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', | 569 self.Fail('conformance2/reading/read-pixels-pack-parameters.html', |
| 570 ['linux', 'opengl'], bug=483282) | 570 ['linux', 'opengl'], bug=483282) |
| 571 | 571 |
| 572 # Linux NVIDIA only. | 572 # Linux NVIDIA only. |
| 573 # La la la la la la la la la la ... (well, not right now, soon) | 573 # La la la la la la la la la la ... |
| 574 self.Fail('deqp/functional/gles3/texturespecification/' + | |
| 575 'random_teximage2d_cube.html', | |
| 576 ['linux', 'nvidia'], bug=483282) | |
| 577 | 574 |
| 578 # Linux NVIDIA with ANGLE only | 575 # Linux NVIDIA with ANGLE only |
| 579 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', | 576 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', |
| 580 ['linux', 'nvidia', 'opengl'], bug=483282) | 577 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 581 self.Fail('deqp/functional/gles3/buffercopy.html', | 578 self.Fail('deqp/functional/gles3/buffercopy.html', |
| 582 ['linux', 'nvidia', 'opengl'], bug=483282) | 579 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 583 self.Fail('deqp/functional/gles3/bufferobjectquery.html', | 580 self.Fail('deqp/functional/gles3/bufferobjectquery.html', |
| 584 ['linux', 'nvidia', 'opengl'], bug=483282) | 581 ['linux', 'nvidia', 'opengl'], bug=483282) |
| 585 self.Fail('conformance2/transform_feedback/transform_feedback.html', | 582 self.Fail('conformance2/transform_feedback/transform_feedback.html', |
| 586 ['linux', 'nvidia', 'opengl'], bug=483282) | 583 ['linux', 'nvidia', 'opengl'], bug=483282) |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 921 # self.Fail(page_name, | 918 # self.Fail(page_name, |
| 922 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 919 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 923 # self.Fail(page_name, | 920 # self.Fail(page_name, |
| 924 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 921 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 925 | 922 |
| 926 # Conflicts if between a generic os condition and a specific version | 923 # Conflicts if between a generic os condition and a specific version |
| 927 # self.Fail(page_name, | 924 # self.Fail(page_name, |
| 928 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 925 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 929 # self.Fail(page_name, | 926 # self.Fail(page_name, |
| 930 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 927 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |