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

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

Issue 2435803004: Initialize buffers before allowing access to them. (Closed)
Patch Set: win failure Created 4 years, 1 month 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 import os 4 import os
5 5
6 from gpu_tests.gpu_test_expectations import GpuTestExpectations 6 from gpu_tests.gpu_test_expectations import GpuTestExpectations
7 7
8 # See the GpuTestExpectations class for documentation. 8 # See the GpuTestExpectations class for documentation.
9 9
10 class WebGLConformanceExpectations(GpuTestExpectations): 10 class WebGLConformanceExpectations(GpuTestExpectations):
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 105
106 # Nexus 9 106 # Nexus 9
107 self.Fail('WebglExtension_WEBGL_compressed_texture_atc', 107 self.Fail('WebglExtension_WEBGL_compressed_texture_atc',
108 ['android', ('nvidia', 'NVIDIA Tegra')]) 108 ['android', ('nvidia', 'NVIDIA Tegra')])
109 109
110 # ======================== 110 # ========================
111 # Conformance expectations 111 # Conformance expectations
112 # ======================== 112 # ========================
113 # Fails on all platforms 113 # Fails on all platforms
114 114
115 self.Fail('conformance/buffers/buffer-uninitialized.html',
116 bug=654201)
117
118 self.Fail('conformance/glsl/bugs/samplers-in-ternary-operator.html', 115 self.Fail('conformance/glsl/bugs/samplers-in-ternary-operator.html',
119 bug=657853) 116 bug=657853)
117
120 # We need to add WebGL 1 check in command buffer that format/type from 118 # We need to add WebGL 1 check in command buffer that format/type from
121 # TexSubImage2D have to match the current texture's. 119 # TexSubImage2D have to match the current texture's.
122 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html', 120 self.Fail('conformance/textures/misc/tex-sub-image-2d-bad-args.html',
123 bug=570453) 121 bug=570453)
124 122
125 # OpenGL / NVIDIA failures 123 # OpenGL / NVIDIA failures
126 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html', 124 self.Fail('conformance/attribs/gl-disabled-vertex-attrib.html',
127 ['win', 'linux', 'nvidia', 'opengl'], bug=1007) # angle bug ID 125 ['win', 'linux', 'nvidia', 'opengl'], bug=1007) # angle bug ID
128 126
129 # Win failures 127 # Win failures
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 self.Fail('conformance/textures/misc/texture-npot.html', 729 self.Fail('conformance/textures/misc/texture-npot.html',
732 ['chromeos', ('intel', 0xa011)], bug=375554) 730 ['chromeos', ('intel', 0xa011)], bug=375554)
733 self.Fail('conformance/textures/misc/texture-npot-video.html', 731 self.Fail('conformance/textures/misc/texture-npot-video.html',
734 ['chromeos', ('intel', 0xa011)], bug=375554) 732 ['chromeos', ('intel', 0xa011)], bug=375554)
735 self.Fail('conformance/textures/misc/texture-size.html', 733 self.Fail('conformance/textures/misc/texture-size.html',
736 ['chromeos', ('intel', 0xa011)], bug=375554) 734 ['chromeos', ('intel', 0xa011)], bug=375554)
737 self.Fail('conformance/uniforms/gl-uniform-arrays.html', 735 self.Fail('conformance/uniforms/gl-uniform-arrays.html',
738 ['chromeos', ('intel', 0xa011)], bug=375554) 736 ['chromeos', ('intel', 0xa011)], bug=375554)
739 self.Skip('conformance/uniforms/uniform-default-values.html', 737 self.Skip('conformance/uniforms/uniform-default-values.html',
740 ['chromeos', ('intel', 0xa011)], bug=375554) 738 ['chromeos', ('intel', 0xa011)], bug=375554)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698