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

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

Issue 2496813002: [Command buffer] workaround the framebuffer completeness bug for Intel Mac (Closed)
Patch Set: apply the workaround to all Mac vendors, not only Mac Intel 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) 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 131
132 # Mac only. 132 # Mac only.
133 133
134 # Fixed on OSX 10.11 134 # Fixed on OSX 10.11
135 self.Fail('deqp/functional/gles3/shaderoperator/common_functions.html', 135 self.Fail('deqp/functional/gles3/shaderoperator/common_functions.html',
136 ['mac', 'amd'], bug=483282) 136 ['mac', 'amd'], bug=483282)
137 137
138 self.Fail('conformance2/rendering/' + 138 self.Fail('conformance2/rendering/' +
139 'framebuffer-completeness-unaffected.html', 139 'framebuffer-completeness-unaffected.html',
140 ['mac'], bug=630800) 140 ['mac'], bug=630800)
141 self.Fail('deqp/functional/gles3/fbocompleteness.html',
142 ['mac'], bug=630800)
143 # self.Fail('deqp/functional/gles3/fbocompleteness.html', 141 # self.Fail('deqp/functional/gles3/fbocompleteness.html',
144 # ['mac', ('nvidia', 0xfe9)], bug=616562) 142 # ['mac', ('nvidia', 0xfe9)], bug=616562)
qiankun 2016/11/11 15:30:48 Can we remove this?
145 143
146 self.Fail('deqp/data/gles3/shaders/linkage.html', 144 self.Fail('deqp/data/gles3/shaders/linkage.html',
147 ['mac'], bug=641129) 145 ['mac'], bug=641129)
148 146
149 self.Fail('conformance2/renderbuffers/framebuffer-test.html', 147 self.Fail('conformance2/renderbuffers/framebuffer-test.html',
150 ['mac'], bug=641149) 148 ['mac'], bug=641149)
151 149
152 # Mac Retina NVIDIA 150 # Mac Retina NVIDIA
153 self.Fail('deqp/functional/gles3/fbomultisample*', 151 self.Fail('deqp/functional/gles3/fbomultisample*',
154 ['mac', ('nvidia', 0xfe9)], bug=641209) 152 ['mac', ('nvidia', 0xfe9)], bug=641209)
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 # self.Fail(page_name, 829 # self.Fail(page_name,
832 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 830 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
833 # self.Fail(page_name, 831 # self.Fail(page_name,
834 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 832 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
835 833
836 # Conflicts if between a generic os condition and a specific version 834 # Conflicts if between a generic os condition and a specific version
837 # self.Fail(page_name, 835 # self.Fail(page_name,
838 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 836 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
839 # self.Fail(page_name, 837 # self.Fail(page_name,
840 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 838 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/framebuffer_manager.h » ('j') | gpu/command_buffer/service/framebuffer_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698