| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 191 |
| 192 self.Fail('deqp/data/gles3/shaders/linkage.html', | 192 self.Fail('deqp/data/gles3/shaders/linkage.html', |
| 193 ['mac'], bug=641129) | 193 ['mac'], bug=641129) |
| 194 | 194 |
| 195 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', | 195 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', |
| 196 ['mac'], bug=618464) | 196 ['mac'], bug=618464) |
| 197 | 197 |
| 198 self.Fail('conformance2/rendering/rgb-format-support.html', | 198 self.Fail('conformance2/rendering/rgb-format-support.html', |
| 199 ['mac'], bug=483282) | 199 ['mac'], bug=483282) |
| 200 | 200 |
| 201 self.Fail('conformance2/textures/misc/copy-texture-image-luma-format.html', | |
| 202 ['mac'], bug=638470) | |
| 203 # This is due to "centroid out" / "in" mismatch. | 201 # This is due to "centroid out" / "in" mismatch. |
| 204 self.Fail('deqp/data/gles3/shaders/qualification_order.html', | 202 self.Fail('deqp/data/gles3/shaders/qualification_order.html', |
| 205 ['mac'], bug=483282) | 203 ['mac'], bug=483282) |
| 206 | 204 |
| 207 self.Fail('conformance2/renderbuffers/framebuffer-test.html', | 205 self.Fail('conformance2/renderbuffers/framebuffer-test.html', |
| 208 ['mac'], bug=641149) | 206 ['mac'], bug=641149) |
| 209 | 207 |
| 210 self.Fail('deqp/functional/gles3/fbomultisample*', | 208 self.Fail('deqp/functional/gles3/fbomultisample*', |
| 211 ['mac'], bug=641209) | 209 ['mac'], bug=641209) |
| 212 | 210 |
| (...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 # self.Fail(page_name, | 878 # self.Fail(page_name, |
| 881 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 879 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 882 # self.Fail(page_name, | 880 # self.Fail(page_name, |
| 883 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 881 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 884 | 882 |
| 885 # Conflicts if between a generic os condition and a specific version | 883 # Conflicts if between a generic os condition and a specific version |
| 886 # self.Fail(page_name, | 884 # self.Fail(page_name, |
| 887 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 885 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 888 # self.Fail(page_name, | 886 # self.Fail(page_name, |
| 889 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 887 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |