Suppress Mac 11.5 failure
Suppresses LoadOpClearIntegerFormatsToLargeValues on Mac 11.5 with Metal on Intel GPUs. Bug: dawn:1109 Change-Id: Ia4316ee00ad790752fa3b5d1778d885c5eb3a188 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/64160 Commit-Queue: Brian Sheedy <bsheedy@google.com> Commit-Queue: Austin Eng <enga@chromium.org> Auto-Submit: Brian Sheedy <bsheedy@google.com> Reviewed-by: Austin Eng <enga@chromium.org>
This commit is contained in:
parent
02fbf168e0
commit
cc3f16c437
|
@ -244,6 +244,9 @@ TEST_P(RenderPassLoadOpTests, LoadOpClearIntegerFormatsToLargeValues) {
|
||||||
// to large values on D3D12.
|
// to large values on D3D12.
|
||||||
DAWN_SUPPRESS_TEST_IF(IsD3D12());
|
DAWN_SUPPRESS_TEST_IF(IsD3D12());
|
||||||
|
|
||||||
|
// TODO(crbug.com/dawn/1109): Re-enable once fixed on Mac Mini 8,1s w/ 11.5.
|
||||||
|
DAWN_SUPPRESS_TEST_IF(IsMetal() && IsIntel() && IsMacOS(11, 5));
|
||||||
|
|
||||||
constexpr double kUint32MaxDouble = 4294967295.0;
|
constexpr double kUint32MaxDouble = 4294967295.0;
|
||||||
constexpr uint32_t kUint32Max = static_cast<uint32_t>(kUint32MaxDouble);
|
constexpr uint32_t kUint32Max = static_cast<uint32_t>(kUint32MaxDouble);
|
||||||
// RGBA32Uint for UINT32_MAX
|
// RGBA32Uint for UINT32_MAX
|
||||||
|
|
Loading…
Reference in New Issue