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

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

Issue 1625643003: Don't enable shader extenstions in WebGL 2 when they are already core. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 self.Skip('deqp/functional/gles3/textureshadow.html', bug=483282) 72 self.Skip('deqp/functional/gles3/textureshadow.html', bug=483282)
73 self.Skip('deqp/functional/gles3/texturespecification*.html', bug=483282) 73 self.Skip('deqp/functional/gles3/texturespecification*.html', bug=483282)
74 self.Skip('deqp/functional/gles3/texturewrap.html', bug=483282) 74 self.Skip('deqp/functional/gles3/texturewrap.html', bug=483282)
75 self.Skip('deqp/functional/gles3/transformfeedback.html', bug=483282) 75 self.Skip('deqp/functional/gles3/transformfeedback.html', bug=483282)
76 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282) 76 self.Skip('deqp/functional/gles3/uniformapi.html', bug=483282)
77 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282) 77 self.Skip('deqp/functional/gles3/uniformbuffers.html', bug=483282)
78 self.Skip('deqp/functional/gles3/vertexarrays.html', bug=483282) 78 self.Skip('deqp/functional/gles3/vertexarrays.html', bug=483282)
79 79
80 self.Fail('conformance2/glsl3/array-complex-indexing.html', bug=483282) 80 self.Fail('conformance2/glsl3/array-complex-indexing.html', bug=483282)
81 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282) 81 self.Fail('conformance2/glsl3/forbidden-operators.html', bug=483282)
82 self.Fail('conformance2/extensions/promoted-extensions-in-shaders.html',
83 bug=295792)
84 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) 82 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282)
85 self.Fail('conformance2/state/gl-object-get-calls.html', bug=483282) 83 self.Fail('conformance2/state/gl-object-get-calls.html', bug=483282)
86 # Note that this test fails on ['win', 'intel'] with bug=483282 84 # Note that this test fails on ['win', 'intel'] with bug=483282
87 self.Fail('conformance2/buffers/uniform-buffers.html', bug=577368) 85 self.Fail('conformance2/buffers/uniform-buffers.html', bug=577368)
88 86
89 # Windows and Mac. 87 # Windows only.
90 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + 88 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' +
91 '-with-canvas-r8-red-unsigned_byte.html', 89 '-with-canvas-r8-red-unsigned_byte.html',
92 ['win'], bug=483282) 90 ['win'], bug=483282)
93 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + 91 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' +
94 '-with-canvas-rg8-rg-unsigned_byte.html', 92 '-with-canvas-rg8-rg-unsigned_byte.html',
95 ['win'], bug=483282) 93 ['win'], bug=483282)
96 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + 94 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' +
97 '-with-canvas-rgb8-rgb-unsigned_byte.html', 95 '-with-canvas-rgb8-rgb-unsigned_byte.html',
98 ['win'], bug=483282) 96 ['win'], bug=483282)
99 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' + 97 self.Fail('conformance2/textures/canvas/tex-image-and-sub-image-2d' +
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-3d' + 188 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-3d' +
191 '-with-webgl-canvas-rgb5_a1-rgba-unsigned_short_5_5_5_1.html', 189 '-with-webgl-canvas-rgb5_a1-rgba-unsigned_short_5_5_5_1.html',
192 ['win'], bug=483282) 190 ['win'], bug=483282)
193 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-3d' + 191 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-3d' +
194 '-with-webgl-canvas-rgba4-rgba-unsigned_byte.html', 192 '-with-webgl-canvas-rgba4-rgba-unsigned_byte.html',
195 ['win'], bug=483282) 193 ['win'], bug=483282)
196 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-3d' + 194 self.Fail('conformance2/textures/webgl_canvas/tex-image-and-sub-image-3d' +
197 '-with-webgl-canvas-rgba4-rgba-unsigned_short_4_4_4_4.html', 195 '-with-webgl-canvas-rgba4-rgba-unsigned_short_4_4_4_4.html',
198 ['win'], bug=483282) 196 ['win'], bug=483282)
199 197
200 # Windows only.
201 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) 198 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282)
202 self.Skip('deqp/functional/gles3/texturestatequery.html', 199 self.Skip('deqp/functional/gles3/texturestatequery.html',
203 ['win'], bug=483282) 200 ['win'], bug=483282)
204 self.Fail('conformance2/glsl3/array-in-complex-expression.html', 201 self.Fail('conformance2/glsl3/array-in-complex-expression.html',
205 ['win'], bug=483282) 202 ['win'], bug=483282)
206 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', 203 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html',
207 ['win'], bug=483282) 204 ['win'], bug=483282)
208 self.Skip('conformance2/reading/read-pixels-pack-parameters.html', 205 self.Skip('conformance2/reading/read-pixels-pack-parameters.html',
209 ['win'], bug=483282) 206 ['win'], bug=483282)
210 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html', 207 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html',
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 # self.Fail(page_name, 411 # self.Fail(page_name,
415 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 412 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
416 # self.Fail(page_name, 413 # self.Fail(page_name,
417 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 414 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
418 415
419 # Conflicts if between a generic os condition and a specific version 416 # Conflicts if between a generic os condition and a specific version
420 # self.Fail(page_name, 417 # self.Fail(page_name,
421 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 418 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
422 # self.Fail(page_name, 419 # self.Fail(page_name,
423 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 420 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/gles2_cmd_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698