Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: content/test/gpu/gpu_tests/webgl_conformance_expectations.py

Issue 2738163002: Enable CopyTextureCHROMIUM in Blink for Tex{Sub}Image2D with more cases (Closed)
Patch Set: rebase only--blink renaming and formatting Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 import os 4 import os
5 5
6 from gpu_tests.gpu_test_expectations import GpuTestExpectations 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations
7 7
8 # See the GpuTestExpectations class for documentation. 8 # See the GpuTestExpectations class for documentation.
9 9
10 class WebGLConformanceExpectations(GpuTestExpectations): 10 class WebGLConformanceExpectations(GpuTestExpectations):
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 # ======================== 92 # ========================
93 # Fails on all platforms 93 # Fails on all platforms
94 94
95 # Need to add detection of feedback loops with multiple render targets. 95 # Need to add detection of feedback loops with multiple render targets.
96 self.Fail('conformance/extensions/webgl-draw-buffers-feedback-loop.html', 96 self.Fail('conformance/extensions/webgl-draw-buffers-feedback-loop.html',
97 bug=1619) # angle bug ID 97 bug=1619) # angle bug ID
98 98
99 # We need to add WebGL 1 check in command buffer that format/type from 99 # We need to add WebGL 1 check in command buffer that format/type from
100 # TexSubImage2D have to match the current texture's. 100 # TexSubImage2D have to match the current texture's.
101 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', 101 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html',
102 bug=570453) 102 bug=625738)
103 103
104 # Temporary suppression; will be removed after bug fix. 104 # Temporary suppression; will be removed after bug fix.
105 self.Fail('conformance/textures/misc/texture-corner-case-videos.html', 105 self.Fail('conformance/textures/misc/texture-corner-case-videos.html',
106 bug=701060) 106 bug=701060)
107 107
108 # Passthrough command decoder 108 # Passthrough command decoder
109 self.Fail('conformance/extensions/ext-sRGB.html', 109 self.Fail('conformance/extensions/ext-sRGB.html',
110 ['passthrough'], bug=679696) 110 ['passthrough'], bug=679696)
111 self.Fail('conformance/extensions/oes-standard-derivatives.html', 111 self.Fail('conformance/extensions/oes-standard-derivatives.html',
112 ['passthrough'], bug=665521) 112 ['passthrough'], bug=665521)
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 self.Fail('conformance/textures/misc/texture-mips.html', 157 self.Fail('conformance/textures/misc/texture-mips.html',
158 ['passthrough'], bug=665518) 158 ['passthrough'], bug=665518)
159 self.Fail('WebglExtension_OES_texture_float_linear', 159 self.Fail('WebglExtension_OES_texture_float_linear',
160 ['passthrough'], bug=1523) # angle bug ID 160 ['passthrough'], bug=1523) # angle bug ID
161 self.Fail('WebglExtension_OES_element_index_uint', 161 self.Fail('WebglExtension_OES_element_index_uint',
162 ['passthrough'], bug=671217) # angle bug ID 162 ['passthrough'], bug=671217) # angle bug ID
163 self.Fail('WebglExtension_OES_texture_half_float_linear', 163 self.Fail('WebglExtension_OES_texture_half_float_linear',
164 ['passthrough'], bug=1523) # angle bug ID 164 ['passthrough'], bug=1523) # angle bug ID
165 self.Fail('WebglExtension_WEBGL_draw_buffers', 165 self.Fail('WebglExtension_WEBGL_draw_buffers',
166 ['passthrough'], bug=1523) # angle bug ID 166 ['passthrough'], bug=1523) # angle bug ID
167 self.Skip('conformance/textures/canvas/*',
168 ['passthrough'], bug=1932) # angle bug ID
169 self.Skip('conformance/textures/video/*',
170 ['passthrough'], bug=1932) # angle bug ID
171 self.Skip('conformance/textures/image_bitmap_from_canvas/*',
172 ['passthrough'], bug=1932) # angle bug ID
173 self.Skip('conformance/textures/webgl_canvas/*',
174 ['passthrough'], bug=1932) # angle bug ID
175 self.Skip('conformance/extensions/oes-texture-half-float-with-canvas.html',
176 ['passthrough'], bug=1932) # angle bug ID
177 self.Skip('conformance/extensions/oes-texture-float-with-canvas.html',
178 ['passthrough'], bug=1932) # angle bug ID
179 self.Skip('conformance/extensions/oes-texture-half-float-with-video.html',
180 ['passthrough'], bug=1932) # angle bug ID
181 self.Skip('conformance/extensions/oes-texture-float-with-video.html',
182 ['passthrough'], bug=1932) # angle bug ID
167 183
168 # Passthrough command decoder / OpenGL 184 # Passthrough command decoder / OpenGL
169 self.Fail('conformance/buffers/buffer-uninitialized.html', 185 self.Fail('conformance/buffers/buffer-uninitialized.html',
170 ['passthrough', 'opengl'], bug=665521) 186 ['passthrough', 'opengl'], bug=665521)
171 self.Fail('conformance/glsl/misc/shader-with-non-reserved-words.html', 187 self.Fail('conformance/glsl/misc/shader-with-non-reserved-words.html',
172 ['passthrough', 'opengl'], bug=665521) 188 ['passthrough', 'opengl'], bug=665521)
173 self.Fail('conformance/renderbuffers/framebuffer-test.html', 189 self.Fail('conformance/renderbuffers/framebuffer-test.html',
174 ['passthrough', 'opengl'], bug=665521) 190 ['passthrough', 'opengl'], bug=665521)
175 self.Fail('conformance/textures/misc/copy-tex-image-and-sub-image-2d.html', 191 self.Fail('conformance/textures/misc/copy-tex-image-and-sub-image-2d.html',
176 ['passthrough', 'opengl'], bug=665521) 192 ['passthrough', 'opengl'], bug=665521)
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 self.Fail('conformance/programs/gl-bind-attrib-location-test.html', 451 self.Fail('conformance/programs/gl-bind-attrib-location-test.html',
436 ['mac', ('nvidia', 0xfe9)], bug=635081) 452 ['mac', ('nvidia', 0xfe9)], bug=635081)
437 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html', 453 self.Fail('conformance/renderbuffers/framebuffer-object-attachment.html',
438 ['mac', ('nvidia', 0xfe9), 'no_passthrough'], bug=635081) 454 ['mac', ('nvidia', 0xfe9), 'no_passthrough'], bug=635081)
439 self.Fail('conformance/textures/misc/tex-input-validation.html', 455 self.Fail('conformance/textures/misc/tex-input-validation.html',
440 ['mac', ('nvidia', 0xfe9)], bug=635081) 456 ['mac', ('nvidia', 0xfe9)], bug=635081)
441 457
442 # Linux failures 458 # Linux failures
443 self.Flaky('conformance/textures/video/' + 459 self.Flaky('conformance/textures/video/' +
444 'tex-2d-rgba-rgba-unsigned_byte.html', 460 'tex-2d-rgba-rgba-unsigned_byte.html',
445 ['linux'], bug=627525) 461 ['linux', 'no_passthrough'], bug=627525)
446 self.Flaky('conformance/textures/video/' + 462 self.Flaky('conformance/textures/video/' +
447 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html', 463 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html',
448 ['linux'], bug=627525) 464 ['linux', 'no_passthrough'], bug=627525)
449 self.Flaky('conformance/textures/video/' + 465 self.Flaky('conformance/textures/video/' +
450 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html', 466 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html',
451 ['linux'], bug=627525) 467 ['linux', 'no_passthrough'], bug=627525)
452 self.Flaky('conformance/textures/video/' + 468 self.Flaky('conformance/textures/video/' +
453 'tex-2d-rgb-rgb-unsigned_byte.html', 469 'tex-2d-rgb-rgb-unsigned_byte.html',
454 ['linux'], bug=627525) 470 ['linux', 'no_passthrough'], bug=627525)
455 self.Flaky('conformance/textures/video/' + 471 self.Flaky('conformance/textures/video/' +
456 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html', 472 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html',
457 ['linux'], bug=627525) 473 ['linux', 'no_passthrough'], bug=627525)
458 self.Fail('conformance/extensions/webgl-compressed-texture-astc.html', 474 self.Fail('conformance/extensions/webgl-compressed-texture-astc.html',
459 ['linux', 'intel'], bug=680675) 475 ['linux', 'intel'], bug=680675)
460 476
461 # NVIDIA 477 # NVIDIA
462 self.Flaky('conformance/extensions/oes-element-index-uint.html', 478 self.Flaky('conformance/extensions/oes-element-index-uint.html',
463 ['linux', 'nvidia', 'no_passthrough'], bug=524144) 479 ['linux', 'nvidia', 'no_passthrough'], bug=524144)
464 self.Flaky('conformance/textures/image/' + 480 self.Flaky('conformance/textures/image/' +
465 'tex-2d-rgb-rgb-unsigned_byte.html', 481 'tex-2d-rgb-rgb-unsigned_byte.html',
466 ['linux', 'nvidia'], bug=596622) 482 ['linux', 'nvidia'], bug=596622)
467 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html', 483 self.Fail('conformance/glsl/bugs/unary-minus-operator-float-bug.html',
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 self.Fail('conformance/textures/misc/texture-npot.html', 795 self.Fail('conformance/textures/misc/texture-npot.html',
780 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) 796 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554)
781 self.Fail('conformance/textures/misc/texture-npot-video.html', 797 self.Fail('conformance/textures/misc/texture-npot-video.html',
782 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554) 798 ['chromeos', ('intel', 0xa011), 'no_passthrough'], bug=375554)
783 self.Fail('conformance/textures/misc/texture-size.html', 799 self.Fail('conformance/textures/misc/texture-size.html',
784 ['chromeos', ('intel', 0xa011)], bug=375554) 800 ['chromeos', ('intel', 0xa011)], bug=375554)
785 self.Fail('conformance/uniforms/gl-uniform-arrays.html', 801 self.Fail('conformance/uniforms/gl-uniform-arrays.html',
786 ['chromeos', ('intel', 0xa011)], bug=375554) 802 ['chromeos', ('intel', 0xa011)], bug=375554)
787 self.Skip('conformance/uniforms/uniform-default-values.html', 803 self.Skip('conformance/uniforms/uniform-default-values.html',
788 ['chromeos', ('intel', 0xa011)], bug=375554) 804 ['chromeos', ('intel', 0xa011)], bug=375554)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698