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

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

Issue 2029803002: Improve CopyTex{Sub}Image2D format validation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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): 9 def __init__(self, conformance_path):
10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path) 10 super(WebGL2ConformanceExpectations, self).__init__(conformance_path)
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 62
63 self.Fail('deqp/data/gles3/shaders/preprocessor.html', bug=483282) 63 self.Fail('deqp/data/gles3/shaders/preprocessor.html', bug=483282)
64 self.Flaky('deqp/functional/gles3/shaderindexing.html', bug=483282) 64 self.Flaky('deqp/functional/gles3/shaderindexing.html', bug=483282)
65 65
66 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) 66 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282)
67 67
68 self.Flaky('conformance2/query/occlusion-query.html', bug=603168) 68 self.Flaky('conformance2/query/occlusion-query.html', bug=603168)
69 self.Fail('conformance2/vertex_arrays/vertex-array-object.html', bug=483282) 69 self.Fail('conformance2/vertex_arrays/vertex-array-object.html', bug=483282)
70 70
71 # All platforms when running ANGLE 71 # All platforms when running ANGLE
72 self.Skip('conformance2/textures/misc/copy-texture-image.html',
73 ['d3d9', 'd3d11', 'opengl'], bug=577144) # crash on debug
74 self.Fail('conformance2/textures/misc/tex-unpack-params.html', 72 self.Fail('conformance2/textures/misc/tex-unpack-params.html',
75 ['d3d9', 'd3d11', 'opengl'], bug=483282) 73 ['d3d9', 'd3d11', 'opengl'], bug=483282)
76 74
77 # Avoid a conflict with a Mac expectation by setting 75 # Avoid a conflict with a Mac expectation by setting
78 self.Fail('conformance2/textures/misc/tex-input-validation.html', 76 self.Fail('conformance2/textures/misc/tex-input-validation.html',
79 ['d3d9', 'd3d11', 'opengl'], bug=483282) 77 ['d3d9', 'd3d11', 'opengl'], bug=483282)
80 78
81 # Failing because the tests are using invalid combinations of source and 79 # Failing because the tests are using invalid combinations of source and
82 # destination formats, see https://github.com/KhronosGroup/WebGL/issues/1628 80 # destination formats, see https://github.com/KhronosGroup/WebGL/issues/1628
81 self.Fail('conformance2/textures/misc/copy-texture-image.html', bug=483282)
83 self.Fail('conformance2/textures/webgl_canvas/' + 82 self.Fail('conformance2/textures/webgl_canvas/' +
84 'tex-2d-rgb565-rgb-unsigned_byte.html', 83 'tex-2d-rgb565-rgb-unsigned_byte.html',
85 ['d3d9', 'd3d11', 'opengl'], bug=483282) 84 bug=483282)
86 self.Fail('conformance2/textures/webgl_canvas/' + 85 self.Fail('conformance2/textures/webgl_canvas/' +
87 'tex-2d-rgb565-rgb-unsigned_short_5_6_5.html', 86 'tex-2d-rgb565-rgb-unsigned_short_5_6_5.html',
88 ['d3d9', 'd3d11', 'opengl'], bug=483282) 87 bug=483282)
89 self.Fail('conformance2/textures/webgl_canvas/' + 88 self.Fail('conformance2/textures/webgl_canvas/' +
90 'tex-2d-rgb5_a1-rgba-unsigned_byte.html', 89 'tex-2d-rgb5_a1-rgba-unsigned_byte.html',
91 ['d3d9', 'd3d11', 'opengl'], bug=483282) 90 bug=483282)
92 self.Fail('conformance2/textures/webgl_canvas/' + 91 self.Fail('conformance2/textures/webgl_canvas/' +
93 'tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html', 92 'tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html',
94 ['d3d9', 'd3d11', 'opengl'], bug=483282) 93 bug=483282)
95 self.Fail('conformance2/textures/webgl_canvas/' + 94 self.Fail('conformance2/textures/webgl_canvas/' +
96 'tex-2d-rgba4-rgba-unsigned_byte.html', 95 'tex-2d-rgba4-rgba-unsigned_byte.html',
97 ['d3d9', 'd3d11', 'opengl'], bug=483282) 96 bug=483282)
98 self.Fail('conformance2/textures/webgl_canvas/' + 97 self.Fail('conformance2/textures/webgl_canvas/' +
99 'tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html', 98 'tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html',
100 ['d3d9', 'd3d11', 'opengl'], bug=483282) 99 bug=483282)
100 self.Fail('conformance2/textures/canvas/' +
101 'tex-2d-rgb565-rgb-unsigned_byte.html',
102 bug=483282)
103 self.Fail('conformance2/textures/canvas/' +
104 'tex-2d-rgb565-rgb-unsigned_short_5_6_5.html',
105 bug=483282)
106 self.Fail('conformance2/textures/canvas/' +
107 'tex-2d-rgb5_a1-rgba-unsigned_byte.html',
108 bug=483282)
109 self.Fail('conformance2/textures/canvas/' +
110 'tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html',
111 bug=483282)
112 self.Fail('conformance2/textures/canvas/' +
113 'tex-2d-rgba4-rgba-unsigned_byte.html',
114 bug=483282)
115 self.Fail('conformance2/textures/canvas/' +
116 'tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html',
117 bug=483282)
101 118
102 # Windows only. 119 # Windows only.
103 120
104 self.Fail('deqp/functional/gles3/vertexarrays.html', 121 self.Fail('deqp/functional/gles3/vertexarrays.html',
105 ['win'], bug=483282) 122 ['win'], bug=483282)
106 123
107 self.Fail('deqp/functional/gles3/texturespecification/' + 124 self.Fail('deqp/functional/gles3/texturespecification/' +
108 'basic_copyteximage2d.html', 125 'basic_copyteximage2d.html',
109 ['win'], bug=483282) 126 ['win'], bug=483282)
110 127
111 self.Fail('conformance2/textures/canvas/' +
112 'tex-2d-rgb565-rgb-unsigned_byte.html',
113 ['win'], bug=483282)
114 self.Fail('conformance2/textures/canvas/' +
115 'tex-2d-rgb565-rgb-unsigned_short_5_6_5.html',
116 ['win'], bug=483282)
117 self.Fail('conformance2/textures/canvas/' +
118 'tex-2d-rgb5_a1-rgba-unsigned_byte.html',
119 ['win'], bug=483282)
120 self.Fail('conformance2/textures/canvas/' +
121 'tex-2d-rgb5_a1-rgba-unsigned_short_5_5_5_1.html',
122 ['win'], bug=483282)
123 self.Fail('conformance2/textures/canvas/' +
124 'tex-2d-rgba4-rgba-unsigned_byte.html',
125 ['win'], bug=483282)
126 self.Fail('conformance2/textures/canvas/' +
127 'tex-2d-rgba4-rgba-unsigned_short_4_4_4_4.html',
128 ['win'], bug=483282)
129
130 self.Flaky('deqp/functional/gles3/buffercopy.html', ['win'], bug=587601) 128 self.Flaky('deqp/functional/gles3/buffercopy.html', ['win'], bug=587601)
131 129
132 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) 130 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282)
133 self.Fail('conformance2/glsl3/array-in-complex-expression.html', 131 self.Fail('conformance2/glsl3/array-in-complex-expression.html',
134 ['win'], bug=483282) 132 ['win'], bug=483282)
135 self.Skip('conformance2/reading/read-pixels-pack-parameters.html', 133 self.Skip('conformance2/reading/read-pixels-pack-parameters.html',
136 ['win'], bug=483282) 134 ['win'], bug=483282)
137 self.Skip('conformance2/textures/misc/tex-mipmap-levels.html', 135 self.Skip('conformance2/textures/misc/tex-mipmap-levels.html',
138 ['win'], bug=483282) 136 ['win'], bug=483282)
139 self.Skip('conformance2/transform_feedback/transform_feedback.html', 137 self.Skip('conformance2/transform_feedback/transform_feedback.html',
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 # self.Fail(page_name, 686 # self.Fail(page_name,
689 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 687 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
690 # self.Fail(page_name, 688 # self.Fail(page_name,
691 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 689 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
692 690
693 # Conflicts if between a generic os condition and a specific version 691 # Conflicts if between a generic os condition and a specific version
694 # self.Fail(page_name, 692 # self.Fail(page_name,
695 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 693 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
696 # self.Fail(page_name, 694 # self.Fail(page_name,
697 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 695 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/common/gles2_cmd_utils.h » ('j') | gpu/command_buffer/common/gles2_cmd_utils.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698