| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 # The following two entries are due to validation of TEXTURE_3D target on | 86 # The following two entries are due to validation of TEXTURE_3D target on |
| 87 # 2D texture calls. | 87 # 2D texture calls. |
| 88 # compressed-tex-image.html fails on Mac with bug ID 565438. | 88 # compressed-tex-image.html fails on Mac with bug ID 565438. |
| 89 self.Fail('conformance2/textures/misc/compressed-tex-image.html', | 89 self.Fail('conformance2/textures/misc/compressed-tex-image.html', |
| 90 bug=483282) | 90 bug=483282) |
| 91 # tex-input-validation fails on Win and ['mac', ('nvidia', 0xfe9)]. | 91 # tex-input-validation fails on Win and ['mac', ('nvidia', 0xfe9)]. |
| 92 self.Fail('conformance2/textures/misc/tex-input-validation.html', | 92 self.Fail('conformance2/textures/misc/tex-input-validation.html', |
| 93 bug=483282) | 93 bug=483282) |
| 94 | 94 |
| 95 # Command buffer side handling of TexSubImage3D is incorrect. |
| 96 self.Fail('conformance2/textures/misc/tex-storage-and-subimage-3d.html', |
| 97 bug=570453) |
| 98 |
| 95 # Windows only. | 99 # Windows only. |
| 96 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + | 100 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + |
| 97 '-with-canvas-r8-red-unsigned_byte.html', | 101 '-with-canvas-r8-red-unsigned_byte.html', |
| 98 ['win'], bug=483282) | 102 ['win'], bug=483282) |
| 99 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + | 103 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + |
| 100 '-with-canvas-rg8-rg-unsigned_byte.html', | 104 '-with-canvas-rg8-rg-unsigned_byte.html', |
| 101 ['win'], bug=483282) | 105 ['win'], bug=483282) |
| 102 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + | 106 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + |
| 103 '-with-canvas-rgb8-rgb-unsigned_byte.html', | 107 '-with-canvas-rgb8-rgb-unsigned_byte.html', |
| 104 ['win'], bug=483282) | 108 ['win'], bug=483282) |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 # self.Fail(page_name, | 448 # self.Fail(page_name, |
| 445 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 449 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 446 # self.Fail(page_name, | 450 # self.Fail(page_name, |
| 447 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 451 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 448 | 452 |
| 449 # Conflicts if between a generic os condition and a specific version | 453 # Conflicts if between a generic os condition and a specific version |
| 450 # self.Fail(page_name, | 454 # self.Fail(page_name, |
| 451 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 455 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 452 # self.Fail(page_name, | 456 # self.Fail(page_name, |
| 453 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 457 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |