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

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

Issue 2421823002: Add workaround for glTex(Sub)Image3D on Intel Macs (Closed)
Patch Set: rebase and fix a nit issue Created 4 years, 2 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/texture_manager.h » ('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, url_prefixes=None): 9 def __init__(self, conformance_path, url_prefixes=None):
10 super(WebGL2ConformanceExpectations, self).__init__( 10 super(WebGL2ConformanceExpectations, self).__init__(
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_06.html', 474 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_06.html',
475 ['mac', 'intel'], bug=606074) 475 ['mac', 'intel'], bug=606074)
476 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_07.html', 476 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_07.html',
477 ['mac', 'intel'], bug=606074) 477 ['mac', 'intel'], bug=606074)
478 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_08.html', 478 self.Fail('deqp/functional/gles3/texturefiltering/3d_combinations_08.html',
479 ['mac', 'intel'], bug=606074) 479 ['mac', 'intel'], bug=606074)
480 480
481 self.Fail('deqp/functional/gles3/texturespecification/' + 481 self.Fail('deqp/functional/gles3/texturespecification/' +
482 'random_teximage2d_2d.html', 482 'random_teximage2d_2d.html',
483 ['mac', 'intel'], bug=483282) 483 ['mac', 'intel'], bug=483282)
484 self.Fail('deqp/functional/gles3/texturespecification/' +
485 'teximage3d_pbo_params.html',
486 ['mac', 'intel'], bug=483282)
487 self.Fail('deqp/functional/gles3/texturespecification/' +
488 'texsubimage3d_pbo_params.html',
489 ['mac', 'intel'], bug=483282)
490 484
491 self.Fail('deqp/functional/gles3/shadertexturefunction/' + 485 self.Fail('deqp/functional/gles3/shadertexturefunction/' +
492 'texturelod.html', 486 'texturelod.html',
493 ['mac', 'intel'], bug=483282) 487 ['mac', 'intel'], bug=483282)
494 self.Fail('deqp/functional/gles3/shadertexturefunction/' + 488 self.Fail('deqp/functional/gles3/shadertexturefunction/' +
495 'texturegrad.html', 489 'texturegrad.html',
496 ['mac', 'intel'], bug=483282) 490 ['mac', 'intel'], bug=483282)
497 self.Fail('deqp/functional/gles3/shadertexturefunction/' + 491 self.Fail('deqp/functional/gles3/shadertexturefunction/' +
498 'textureprojgrad.html', 492 'textureprojgrad.html',
499 ['mac', 'intel'], bug=483282) 493 ['mac', 'intel'], bug=483282)
500 494
501 self.Fail('deqp/functional/gles3/framebufferblit/rect_02.html', 495 self.Fail('deqp/functional/gles3/framebufferblit/rect_02.html',
502 ['mac', 'intel'], bug=483282) 496 ['mac', 'intel'], bug=483282)
503 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html', 497 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html',
504 ['mac', 'intel'], bug=483282) 498 ['mac', 'intel'], bug=483282)
505 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html', 499 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html',
506 ['mac', 'intel'], bug=483282) 500 ['mac', 'intel'], bug=483282)
507 501
508 self.Fail('conformance2/textures/misc/tex-unpack-params.html',
509 ['mac', 'intel'], bug=483282)
510
511 # Fixed on OSX 10.11 502 # Fixed on OSX 10.11
512 self.Fail('deqp/functional/gles3/uniformbuffers/random.html', 503 self.Fail('deqp/functional/gles3/uniformbuffers/random.html',
513 ['mac', 'intel'], bug=618464) 504 ['mac', 'intel'], bug=618464)
514 505
515 # Linux only. 506 # Linux only.
516 self.Fail('conformance2/buffers/get-buffer-sub-data.html', 507 self.Fail('conformance2/buffers/get-buffer-sub-data.html',
517 ['linux'], bug=654201) 508 ['linux'], bug=654201)
518 509
519 self.Flaky('conformance/textures/video/' + 510 self.Flaky('conformance/textures/video/' +
520 'tex-2d-rgba-rgba-unsigned_byte.html', 511 'tex-2d-rgba-rgba-unsigned_byte.html',
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 # self.Fail(page_name, 888 # self.Fail(page_name,
898 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 889 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
899 # self.Fail(page_name, 890 # self.Fail(page_name,
900 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 891 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
901 892
902 # Conflicts if between a generic os condition and a specific version 893 # Conflicts if between a generic os condition and a specific version
903 # self.Fail(page_name, 894 # self.Fail(page_name,
904 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 895 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
905 # self.Fail(page_name, 896 # self.Fail(page_name,
906 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 897 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/texture_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698