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

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

Issue 1958493002: Move the EXT_color_buffer_float extension out of draft for WebGL 2.0. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp » ('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)
11 11
12 def SetExpectations(self): 12 def SetExpectations(self):
13 # =================================== 13 # ===================================
14 # Extension availability expectations 14 # Extension availability expectations
15 # =================================== 15 # ===================================
16 # It's expected that not all extensions will be available on all platforms. 16 # It's expected that not all extensions will be available on all platforms.
17 # Having a test listed here is not necessarily a problem. 17 # Having a test listed here is not necessarily a problem.
18 18
19 self.Fail('WebglExtension.EXT_color_buffer_float',
20 ['win', 'mac', 'linux'])
21 self.Fail('WebglExtension.WEBGL_compressed_texture_astc', 19 self.Fail('WebglExtension.WEBGL_compressed_texture_astc',
22 ['win', 'mac', 'linux']) 20 ['win', 'mac', 'linux'])
23 self.Fail('WebglExtension.WEBGL_compressed_texture_atc', 21 self.Fail('WebglExtension.WEBGL_compressed_texture_atc',
24 ['win', 'mac', 'linux']) 22 ['win', 'mac', 'linux'])
25 self.Fail('WebglExtension.WEBGL_compressed_texture_etc1', 23 self.Fail('WebglExtension.WEBGL_compressed_texture_etc1',
26 ['mac', 'linux']) 24 ['mac', 'linux'])
27 self.Fail('WebglExtension.WEBGL_compressed_texture_pvrtc', 25 self.Fail('WebglExtension.WEBGL_compressed_texture_pvrtc',
28 ['win', 'mac', 'linux']) 26 ['win', 'mac', 'linux'])
29 27
30 # ======================== 28 # ========================
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 # self.Fail(page_name, 525 # self.Fail(page_name,
528 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 526 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
529 # self.Fail(page_name, 527 # self.Fail(page_name,
530 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 528 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
531 529
532 # Conflicts if between a generic os condition and a specific version 530 # Conflicts if between a generic os condition and a specific version
533 # self.Fail(page_name, 531 # self.Fail(page_name,
534 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 532 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
535 # self.Fail(page_name, 533 # self.Fail(page_name,
536 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 534 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698