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

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

Issue 2791813003: Fix broken draw/upload paths from videos to 2D canvas and WebGL. (Closed)
Patch Set: Disable GPU-GPU copies to floating-point textures on Android. 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) 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 26 matching lines...) Expand all
37 # Conformance expectations 37 # Conformance expectations
38 # ======================== 38 # ========================
39 39
40 # Too slow (take about one hour to run) 40 # Too slow (take about one hour to run)
41 self.Skip('deqp/functional/gles3/builtinprecision/*.html', bug=619403) 41 self.Skip('deqp/functional/gles3/builtinprecision/*.html', bug=619403)
42 42
43 # All platforms. 43 # All platforms.
44 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) 44 self.Flaky('conformance2/query/occlusion-query.html', bug=603168)
45 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282) 45 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282)
46 46
47 # Temporary suppression; will be removed after bug fix.
48 self.Fail('conformance/textures/misc/texture-corner-case-videos.html',
49 bug=701060)
50
51 # canvas.commit() promise synchronization isn't fully reliable yet. 47 # canvas.commit() promise synchronization isn't fully reliable yet.
52 self.Fail('conformance/offscreencanvas/offscreencanvas-resize.html', 48 self.Fail('conformance/offscreencanvas/offscreencanvas-resize.html',
53 bug=709484) 49 bug=709484)
54 50
55 self.Fail('conformance2/rendering/depth-stencil-feedback-loop.html', 51 self.Fail('conformance2/rendering/depth-stencil-feedback-loop.html',
56 bug=660844) # WebGL 2.0.1 52 bug=660844) # WebGL 2.0.1
57 self.Fail('conformance2/rendering/rendering-sampling-feedback-loop.html', 53 self.Fail('conformance2/rendering/rendering-sampling-feedback-loop.html',
58 bug=660844) # WebGL 2.0.1 54 bug=660844) # WebGL 2.0.1
59 self.Fail('conformance2/textures/misc/' + 55 self.Fail('conformance2/textures/misc/' +
60 'integer-cubemap-specification-order-bug.html', 56 'integer-cubemap-specification-order-bug.html',
(...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 # self.Fail(page_name, 1107 # self.Fail(page_name,
1112 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 1108 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
1113 # self.Fail(page_name, 1109 # self.Fail(page_name,
1114 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 1110 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
1115 1111
1116 # Conflicts if between a generic os condition and a specific version 1112 # Conflicts if between a generic os condition and a specific version
1117 # self.Fail(page_name, 1113 # self.Fail(page_name,
1118 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 1114 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
1119 # self.Fail(page_name, 1115 # self.Fail(page_name,
1120 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 1116 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « content/renderer/media/webmediaplayer_ms.cc ('k') | content/test/gpu/gpu_tests/webgl_conformance_expectations.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698