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

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

Issue 2547013002: Add Intel macOS workaround for WebGL2 canvas_sub_rectangle tests (Closed)
Patch Set: add comments Created 4 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
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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 ['mac', 'intel'], bug=483282) 445 ['mac', 'intel'], bug=483282)
446 self.Fail('deqp/functional/gles3/shadertexturefunction/' + 446 self.Fail('deqp/functional/gles3/shadertexturefunction/' +
447 'textureprojgrad.html', 447 'textureprojgrad.html',
448 ['mac', 'intel'], bug=483282) 448 ['mac', 'intel'], bug=483282)
449 449
450 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html', 450 self.Fail('deqp/functional/gles3/framebufferblit/rect_03.html',
451 ['mac', 'intel'], bug=483282) 451 ['mac', 'intel'], bug=483282)
452 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html', 452 self.Fail('deqp/functional/gles3/framebufferblit/rect_04.html',
453 ['mac', 'intel'], bug=483282) 453 ['mac', 'intel'], bug=483282)
454 454
455 self.Fail('conformance/textures/canvas_sub_rectangle/' +
456 'tex-2d-rgba-rgba-unsigned_byte.html',
457 ['mac', 'intel'], bug=665656)
458 self.Fail('conformance/textures/canvas_sub_rectangle/' +
459 'tex-2d-rgba-rgba-unsigned_short_4_4_4_4.html',
460 ['mac', 'intel'], bug=665656)
461 self.Fail('conformance/textures/canvas_sub_rectangle/' +
462 'tex-2d-rgba-rgba-unsigned_short_5_5_5_1.html',
463 ['mac', 'intel'], bug=665656)
464 self.Fail('conformance/textures/canvas_sub_rectangle/' +
465 'tex-2d-rgb-rgb-unsigned_byte.html',
466 ['mac', 'intel'], bug=665656)
467 self.Fail('conformance/textures/canvas_sub_rectangle/' +
468 'tex-2d-rgb-rgb-unsigned_short_5_6_5.html',
469 ['mac', 'intel'], bug=665656)
470 self.Fail('conformance2/textures/canvas_sub_rectangle/' +
471 'tex-2d-r8-red-unsigned_byte.html',
472 ['mac', 'intel'], bug=665656)
473 self.Fail('conformance2/textures/canvas_sub_rectangle/' +
474 'tex-2d-r8ui-red_integer-unsigned_byte.html',
475 ['yosemite', 'intel'], bug=665656)
476 self.Fail('conformance2/textures/canvas_sub_rectangle/' +
477 'tex-2d-rg8-rg-unsigned_byte.html',
478 ['mac', 'intel'], bug=665656)
479 self.Fail('conformance2/textures/canvas_sub_rectangle/' +
480 'tex-2d-rg8ui-rg_integer-unsigned_byte.html',
481 ['yosemite', 'intel'], bug=665656)
482 self.Fail('conformance2/textures/canvas_sub_rectangle/' +
483 'tex-2d-rgb8-rgb-unsigned_byte.html',
484 ['mac', 'intel'], bug=665656)
485 self.Fail('conformance2/textures/canvas_sub_rectangle/' +
486 'tex-2d-rgb8ui-rgb_integer-unsigned_byte.html',
487 ['yosemite', 'intel'], bug=665656)
488 self.Fail('conformance2/textures/canvas_sub_rectangle/' +
489 'tex-2d-rgba8-rgba-unsigned_byte.html',
490 ['mac', 'intel'], bug=665656)
491 self.Fail('conformance2/textures/canvas_sub_rectangle/' +
492 'tex-2d-rgba8ui-rgba_integer-unsigned_byte.html',
493 ['yosemite', 'intel'], bug=665656)
494
495 self.Fail('conformance2/textures/image_data/' + 455 self.Fail('conformance2/textures/image_data/' +
496 'tex-2d-rgba8ui-rgba_integer-unsigned_byte.html', 456 'tex-2d-rgba8ui-rgba_integer-unsigned_byte.html',
497 ['mac', 'intel'], bug=665197) 457 ['mac', 'intel'], bug=665197)
498 self.Fail('conformance2/textures/image_data/' + 458 self.Fail('conformance2/textures/image_data/' +
499 'tex-2d-rgb8ui-rgb_integer-unsigned_byte.html', 459 'tex-2d-rgb8ui-rgb_integer-unsigned_byte.html',
500 ['mac', 'intel'], bug=665197) 460 ['mac', 'intel'], bug=665197)
501 self.Fail('conformance2/textures/image_data/' + 461 self.Fail('conformance2/textures/image_data/' +
502 'tex-2d-rg8ui-rg_integer-unsigned_byte.html', 462 'tex-2d-rg8ui-rg_integer-unsigned_byte.html',
503 ['mac', 'intel'], bug=665197) 463 ['mac', 'intel'], bug=665197)
504 self.Fail('conformance2/textures/image_data/' + 464 self.Fail('conformance2/textures/image_data/' +
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 # self.Fail(page_name, 802 # self.Fail(page_name,
843 # ['linux', ('nvidia', 0x1), 'debug', 'opengl']) 803 # ['linux', ('nvidia', 0x1), 'debug', 'opengl'])
844 # self.Fail(page_name, 804 # self.Fail(page_name,
845 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 805 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
846 806
847 # Conflicts if between a generic os condition and a specific version 807 # Conflicts if between a generic os condition and a specific version
848 # self.Fail(page_name, 808 # self.Fail(page_name,
849 # ['xp', ('nvidia', 0x1), 'debug', 'opengl']) 809 # ['xp', ('nvidia', 0x1), 'debug', 'opengl'])
850 # self.Fail(page_name, 810 # self.Fail(page_name,
851 # ['win', ('nvidia', 0x1), 'debug', 'opengl']) 811 # ['win', ('nvidia', 0x1), 'debug', 'opengl'])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698