| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 self.Fail('conformance2/rendering/framebuffer-unsupported.html', | 63 self.Fail('conformance2/rendering/framebuffer-unsupported.html', |
| 64 bug=628861) | 64 bug=628861) |
| 65 | 65 |
| 66 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 66 self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 67 bug=1450) # ANGLE bug | 67 bug=1450) # ANGLE bug |
| 68 # self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 68 # self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 69 # ['mac'], bug=483282) | 69 # ['mac'], bug=483282) |
| 70 # self.Fail('conformance/glsl/misc/shaders-with-invariance.html', | 70 # self.Fail('conformance/glsl/misc/shaders-with-invariance.html', |
| 71 # ['linux', 'amd', 'intel'], bug=483282) | 71 # ['linux', 'amd', 'intel'], bug=483282) |
| 72 | 72 |
| 73 # Linux passes because 2D canvas is not GPU accelerated. | |
| 74 self.Fail('conformance/textures/image_bitmap_from_canvas/' + | |
| 75 'tex-2d-rgba-rgba-unsigned_byte.html', | |
| 76 ['win', 'mac'], bug=628954) | |
| 77 self.Fail('conformance/textures/image_bitmap_from_canvas/' + | 73 self.Fail('conformance/textures/image_bitmap_from_canvas/' + |
| 78 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', | 74 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', |
| 79 ['win', 'mac'], bug=628954) | 75 ['win'], bug=628954) |
| 80 self.Fail('conformance/textures/image_bitmap_from_canvas/' + | 76 self.Fail('conformance/textures/image_bitmap_from_canvas/' + |
| 81 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', | 77 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', |
| 82 ['win', 'mac'], bug=628954) | 78 ['win'], bug=628954) |
| 83 self.Fail('conformance/textures/image_bitmap_from_canvas/' + | |
| 84 'tex-2d-rgb-rgb-unsigned_byte.html', | |
| 85 ['win', 'mac'], bug=628954) | |
| 86 self.Fail('conformance/textures/image_bitmap_from_canvas/' + | 79 self.Fail('conformance/textures/image_bitmap_from_canvas/' + |
| 87 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', | 80 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', |
| 88 ['win', 'mac'], bug=628954) | 81 ['win'], bug=628954) |
| 89 | 82 |
| 90 # Windows only. | 83 # Windows only. |
| 91 self.Fail('conformance/glsl/bugs/' + | 84 self.Fail('conformance/glsl/bugs/' + |
| 92 'pow-of-small-constant-in-user-defined-function.html', | 85 'pow-of-small-constant-in-user-defined-function.html', |
| 93 ['win'], bug=485641) | 86 ['win'], bug=485641) |
| 94 self.Fail('conformance/misc/uninitialized-test.html', | 87 self.Fail('conformance/misc/uninitialized-test.html', |
| 95 ['win'], bug=483282) | 88 ['win'], bug=483282) |
| 96 self.Fail('conformance/rendering/point-specific-shader-variables.html', | 89 self.Fail('conformance/rendering/point-specific-shader-variables.html', |
| 97 ['win'], bug=616335) | 90 ['win'], bug=616335) |
| 98 self.Fail('conformance/textures/canvas/' + | 91 self.Fail('conformance/textures/canvas/' + |
| (...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 921 # self.Fail(page_name, | 914 # self.Fail(page_name, |
| 922 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) | 915 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) |
| 923 # self.Fail(page_name, | 916 # self.Fail(page_name, |
| 924 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 917 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| 925 | 918 |
| 926 # Conflicts if between a generic os condition and a specific version | 919 # Conflicts if between a generic os condition and a specific version |
| 927 # self.Fail(page_name, | 920 # self.Fail(page_name, |
| 928 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) | 921 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) |
| 929 # self.Fail(page_name, | 922 # self.Fail(page_name, |
| 930 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) | 923 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) |
| OLD | NEW |