| 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 ['win', ('amd', 0x6779)], bug=614178) | 307 ['win', ('amd', 0x6779)], bug=614178) |
| 308 self.Fail('deqp/functional/gles3/texturespecification/' + | 308 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 309 'texstorage3d_format_depth_stencil.html', | 309 'texstorage3d_format_depth_stencil.html', |
| 310 ['win', ('amd', 0x6779)], bug=614178) | 310 ['win', ('amd', 0x6779)], bug=614178) |
| 311 | 311 |
| 312 # Win / Intel | 312 # Win / Intel |
| 313 self.Fail('conformance2/buffers/uniform-buffers.html', | 313 self.Fail('conformance2/buffers/uniform-buffers.html', |
| 314 ['win', 'intel'], bug=483282) | 314 ['win', 'intel'], bug=483282) |
| 315 self.Fail('deqp/functional/gles3/shaderstruct.html', | 315 self.Fail('deqp/functional/gles3/shaderstruct.html', |
| 316 ['win', 'intel'], bug=483282) | 316 ['win', 'intel'], bug=483282) |
| 317 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 318 'teximage3d_depth.html', |
| 319 ['win', 'intel'], bug=614418) |
| 320 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 321 'texsubimage3d_depth.html', |
| 322 ['win', 'intel'], bug=614418) |
| 323 self.Fail('deqp/functional/gles3/texturespecification/' + |
| 324 'texstorage3d_format_depth_stencil.html', |
| 325 ['win', 'intel'], bug=614418) |
| 317 | 326 |
| 318 # Mac only. | 327 # Mac only. |
| 319 self.Fail('deqp/functional/gles3/texturefiltering/cube_formats_*', | 328 self.Fail('deqp/functional/gles3/texturefiltering/cube_formats_*', |
| 320 ['mac'], bug=606074) | 329 ['mac'], bug=606074) |
| 321 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_*', | 330 self.Fail('deqp/functional/gles3/texturefiltering/cube_sizes_*', |
| 322 ['mac'], bug=606074) | 331 ['mac'], bug=606074) |
| 323 self.Fail('deqp/functional/gles3/texturefiltering/cube_combinations_*', | 332 self.Fail('deqp/functional/gles3/texturefiltering/cube_combinations_*', |
| 324 ['mac'], bug=606074) | 333 ['mac'], bug=606074) |
| 325 | 334 |
| 326 self.Skip('deqp/functional/gles3/texturespecification/' + | 335 self.Skip('deqp/functional/gles3/texturespecification/' + |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 # self.Fail(page_name, | 626 # self.Fail(page_name, |
| 618 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 627 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 619 # self.Fail(page_name, | 628 # self.Fail(page_name, |
| 620 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 629 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 621 | 630 |
| 622 # Conflicts if between a generic os condition and a specific version | 631 # Conflicts if between a generic os condition and a specific version |
| 623 # self.Fail(page_name, | 632 # self.Fail(page_name, |
| 624 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 633 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 625 # self.Fail(page_name, | 634 # self.Fail(page_name, |
| 626 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 635 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |