| 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, url_prefixes=None, is_asan=False): | 9 def __init__(self, conformance_path, url_prefixes=None, is_asan=False): |
| 10 super(WebGL2ConformanceExpectations, self).__init__( | 10 super(WebGL2ConformanceExpectations, self).__init__( |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 'tex-2d-r11f_g11f_b10f-rgb-half_float.html', | 681 'tex-2d-r11f_g11f_b10f-rgb-half_float.html', |
| 682 ['linux', 'nvidia'], bug=694359) | 682 ['linux', 'nvidia'], bug=694359) |
| 683 self.Fail('conformance2/textures/image_bitmap_from_canvas/' + | 683 self.Fail('conformance2/textures/image_bitmap_from_canvas/' + |
| 684 'tex-3d-srgb8_alpha8-rgba-unsigned_byte.html', | 684 'tex-3d-srgb8_alpha8-rgba-unsigned_byte.html', |
| 685 ['linux', 'nvidia'], bug=679677) | 685 ['linux', 'nvidia'], bug=679677) |
| 686 self.Fail('conformance2/rendering/framebuffer-texture-level1.html', | 686 self.Fail('conformance2/rendering/framebuffer-texture-level1.html', |
| 687 ['linux', 'nvidia', 'opengl'], bug=680278) | 687 ['linux', 'nvidia', 'opengl'], bug=680278) |
| 688 self.Fail('conformance2/textures/image/' + | 688 self.Fail('conformance2/textures/image/' + |
| 689 'tex-3d-rg8ui-rg_integer-unsigned_byte.html', | 689 'tex-3d-rg8ui-rg_integer-unsigned_byte.html', |
| 690 ['linux', ('nvidia', 0xf02)], bug=680282) | 690 ['linux', ('nvidia', 0xf02)], bug=680282) |
| 691 self.Fail('conformance2/textures/image_data/tex-2d-rg16f-rg-half_float.html'
, | |
| 692 ['linux', 'nvidia'], bug=684399) | |
| 693 self.Fail('conformance2/textures/image_bitmap_from_blob/' + | |
| 694 'tex-2d-rgb565-rgb-unsigned_byte.html', | |
| 695 ['linux', 'nvidia'], bug=684399) | |
| 696 self.Flaky('conformance2/textures/image_bitmap_from_image_data/' + | 691 self.Flaky('conformance2/textures/image_bitmap_from_image_data/' + |
| 697 'tex-2d-srgb8-rgb-unsigned_byte.html', | 692 'tex-2d-srgb8-rgb-unsigned_byte.html', |
| 698 ['linux', 'nvidia'], bug=694354) | 693 ['linux', 'nvidia'], bug=694354) |
| 699 | 694 |
| 700 # Linux Intel | 695 # Linux Intel |
| 701 self.Fail('conformance2/extensions/ext-color-buffer-float.html', | 696 self.Fail('conformance2/extensions/ext-color-buffer-float.html', |
| 702 ['linux', 'intel'], bug=640389) | 697 ['linux', 'intel'], bug=640389) |
| 703 self.Fail('WebglExtension_EXT_disjoint_timer_query_webgl2', | 698 self.Fail('WebglExtension_EXT_disjoint_timer_query_webgl2', |
| 704 ['linux', 'intel'], bug=687210) | 699 ['linux', 'intel'], bug=687210) |
| 705 | 700 |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 # self.Fail(page_name, | 1037 # self.Fail(page_name, |
| 1043 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 1038 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1044 # self.Fail(page_name, | 1039 # self.Fail(page_name, |
| 1045 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1040 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1046 | 1041 |
| 1047 # Conflicts if between a generic os condition and a specific version | 1042 # Conflicts if between a generic os condition and a specific version |
| 1048 # self.Fail(page_name, | 1043 # self.Fail(page_name, |
| 1049 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 1044 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 1050 # self.Fail(page_name, | 1045 # self.Fail(page_name, |
| 1051 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 1046 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |