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

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

Issue 2318313004: emulate srgb format for generateMipmap (Closed)
Patch Set: addressed feedbacks Created 4 years, 2 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): 9 def __init__(self, conformance_path, url_prefixes=None):
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 # 2.0.1 OR LATER 40 # 2.0.1 OR LATER
41 # Too slow (take about one hour to run) 41 # Too slow (take about one hour to run)
42 self.Skip('deqp/functional/gles3/builtinprecision/*.html', bug=619403) 42 self.Skip('deqp/functional/gles3/builtinprecision/*.html', bug=619403)
43 43
44 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282) 44 self.Fail('conformance2/glsl3/tricky-loop-conditions.html', bug=483282)
45 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html', 45 self.Fail('conformance2/glsl3/vector-dynamic-indexing-nv-driver-bug.html',
46 ['linux'], bug=483282) 46 ['linux'], bug=483282)
47 self.Fail('conformance2/textures/misc/tex-srgb-mipmap.html', bug=634519)
48 47
49 # All platforms. 48 # All platforms.
50 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html', 49 self.Fail('conformance2/rendering/blitframebuffer-outside-readbuffer.html',
51 bug=664740) 50 bug=664740)
52 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) 51 self.Flaky('conformance2/query/occlusion-query.html', bug=603168)
53 52
54 # Windows only. 53 # Windows only.
55 # We are awesome! 54 # We are awesome!
56 55
57 # Win / NVidia 56 # Win / NVidia
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 # self.Fail(page_name, 887 # self.Fail(page_name,
889 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 888 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
890 # self.Fail(page_name, 889 # self.Fail(page_name,
891 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 890 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
892 891
893 # Conflicts if between a generic os condition and a specific version 892 # Conflicts if between a generic os condition and a specific version
894 # self.Fail(page_name, 893 # self.Fail(page_name,
895 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 894 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
896 # self.Fail(page_name, 895 # self.Fail(page_name,
897 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 896 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698