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

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

Issue 1465993003: Ensured that texture completeness takes into account base and max level (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing compiler warnings Created 5 years 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 bug=483282) 84 bug=483282)
85 self.Fail('conformance2/glsl3/ternary-operator-on-arrays-glsl3.html', 85 self.Fail('conformance2/glsl3/ternary-operator-on-arrays-glsl3.html',
86 bug=483282) 86 bug=483282)
87 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html', 87 self.Fail('conformance2/reading/read-pixels-into-pixel-pack-buffer.html',
88 bug=483282) 88 bug=483282)
89 self.Fail('conformance2/renderbuffers/framebuffer-test.html', bug=483282) 89 self.Fail('conformance2/renderbuffers/framebuffer-test.html', bug=483282)
90 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html', 90 self.Fail('conformance2/renderbuffers/invalidate-framebuffer.html',
91 bug=483282) 91 bug=483282)
92 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282) 92 self.Fail('conformance2/samplers/sampler-drawing-test.html', bug=483282)
93 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282) 93 self.Skip('conformance2/textures/webgl_canvas/*', bug=483282)
94 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html', bug=483282)
95 self.Fail('conformance2/textures/misc/tex-storage-2d.html', bug=483282) 94 self.Fail('conformance2/textures/misc/tex-storage-2d.html', bug=483282)
96 95
97 # Windows only. 96 # Windows only.
98 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282) 97 self.Skip('deqp/functional/gles3/readpixel.html', ['win'], bug=483282)
99 self.Skip('deqp/functional/gles3/texturestatequery.html', 98 self.Skip('deqp/functional/gles3/texturestatequery.html',
100 ['win'], bug=483282) 99 ['win'], bug=483282)
101 self.Fail('conformance2/glsl3/array-in-complex-expression.html', 100 self.Fail('conformance2/glsl3/array-in-complex-expression.html',
102 ['win'], bug=483282) 101 ['win'], bug=483282)
103 self.Fail('conformance2/glsl3/frag-depth.html', 102 self.Fail('conformance2/glsl3/frag-depth.html',
104 ['win'], bug=483282) 103 ['win'], bug=483282)
105 self.Fail('conformance2/glsl3/short-circuiting-in-loop-condition.html', 104 self.Fail('conformance2/glsl3/short-circuiting-in-loop-condition.html',
106 ['win'], bug=483282) 105 ['win'], bug=483282)
107 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html', 106 self.Fail('conformance2/reading/read-pixels-from-fbo-test.html',
108 ['win'], bug=483282) 107 ['win'], bug=483282)
109 self.Fail('conformance2/renderbuffers/framebuffer-object-attachment.html', 108 self.Fail('conformance2/renderbuffers/framebuffer-object-attachment.html',
110 ['win'], bug=1082) # angle bug ID 109 ['win'], bug=1082) # angle bug ID
111 self.Fail('conformance2/rendering/draw-buffers.html', 110 self.Fail('conformance2/rendering/draw-buffers.html',
112 ['win'], bug=483282) 111 ['win'], bug=483282)
113 self.Fail('conformance2/state/gl-object-get-calls.html', 112 self.Fail('conformance2/state/gl-object-get-calls.html',
114 ['win'], bug=483282) 113 ['win'], bug=483282)
115 self.Fail('conformance2/textures/canvas/*', ['win'], bug=483282) 114 self.Fail('conformance2/textures/canvas/*', ['win'], bug=483282)
116 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html', 115 self.Fail('conformance2/textures/misc/gl-get-tex-parameter.html',
117 ['win'], bug=483282) 116 ['win'], bug=483282)
118 self.Fail('conformance2/textures/misc/tex-input-validation.html', 117 self.Fail('conformance2/textures/misc/tex-input-validation.html',
119 ['win'], bug=483282) 118 ['win'], bug=483282)
119 self.Fail('conformance2/textures/misc/tex-mipmap-levels.html',
120 ['win'], bug=483282)
120 self.Skip('conformance2/transform_feedback/transform_feedback.html', 121 self.Skip('conformance2/transform_feedback/transform_feedback.html',
121 ['win'], bug=483282) 122 ['win'], bug=483282)
122 # Windows 8 only. 123 # Windows 8 only.
123 self.Fail('conformance2/textures/image_data/tex-image-and-sub-image-2d' + 124 self.Fail('conformance2/textures/image_data/tex-image-and-sub-image-2d' +
124 '-with-image-data-rgb565-rgb-unsigned_byte.html', 125 '-with-image-data-rgb565-rgb-unsigned_byte.html',
125 ['win8'], bug=483282) 126 ['win8'], bug=483282)
126 self.Fail('conformance2/textures/image_data/tex-image-and-sub-image-2d' + 127 self.Fail('conformance2/textures/image_data/tex-image-and-sub-image-2d' +
127 '-with-image-data-rgb5_a1-rgba-unsigned_byte.html', 128 '-with-image-data-rgb5_a1-rgba-unsigned_byte.html',
128 ['win8'], bug=483282) 129 ['win8'], bug=483282)
129 self.Fail('conformance2/textures/image/tex-image-and-sub-image-2d' + 130 self.Fail('conformance2/textures/image/tex-image-and-sub-image-2d' +
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 # self.Fail(page_name, 277 # self.Fail(page_name,
277 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 278 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
278 # self.Fail(page_name, 279 # self.Fail(page_name,
279 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 280 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
280 281
281 # Conflicts if between a generic os condition and a specific version 282 # Conflicts if between a generic os condition and a specific version
282 # self.Fail(page_name, 283 # self.Fail(page_name,
283 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 284 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
284 # self.Fail(page_name, 285 # self.Fail(page_name,
285 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 286 # ['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