Suppress tests failing on Apple GPUs
Bug: dawn:1828, dawn:1829, dawn:1830 Change-Id: If6f6b107b58822b46c286cf84075ca7981c3edc7 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/133441 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Austin Eng <enga@chromium.org> Reviewed-by: Loko Kung <lokokung@google.com>
This commit is contained in:
parent
c42014805a
commit
3f18fc9a05
|
@ -933,6 +933,10 @@ TEST_P(DepthStencilCopyTests_RegressionDawn1083, Run) {
|
||||||
DAWN_SUPPRESS_TEST_IF(IsAMD() && IsMetal() &&
|
DAWN_SUPPRESS_TEST_IF(IsAMD() && IsMetal() &&
|
||||||
GetParam().mTextureFormat == wgpu::TextureFormat::Depth32FloatStencil8);
|
GetParam().mTextureFormat == wgpu::TextureFormat::Depth32FloatStencil8);
|
||||||
|
|
||||||
|
// TODO(crbug.com/dawn/1828): depth16unorm broken on Apple GPUs.
|
||||||
|
DAWN_SUPPRESS_TEST_IF(IsApple() &&
|
||||||
|
GetParam().mTextureFormat == wgpu::TextureFormat::Depth16Unorm);
|
||||||
|
|
||||||
uint32_t mipLevelCount = 3;
|
uint32_t mipLevelCount = 3;
|
||||||
uint32_t arrayLayerCount = 3;
|
uint32_t arrayLayerCount = 3;
|
||||||
wgpu::TextureDescriptor texDesc = {};
|
wgpu::TextureDescriptor texDesc = {};
|
||||||
|
|
|
@ -186,6 +186,9 @@ class DepthStencilLoadOpTests : public DawnTestWithParams<DepthStencilLoadOpTest
|
||||||
|
|
||||||
// Check that clearing a mip level works at all.
|
// Check that clearing a mip level works at all.
|
||||||
TEST_P(DepthStencilLoadOpTests, ClearMip0) {
|
TEST_P(DepthStencilLoadOpTests, ClearMip0) {
|
||||||
|
// TODO(crbug.com/dawn/1828): depth16unorm broken on Apple GPUs.
|
||||||
|
DAWN_SUPPRESS_TEST_IF(IsApple() && GetParam().mFormat == wgpu::TextureFormat::Depth16Unorm);
|
||||||
|
|
||||||
wgpu::CommandEncoder encoder = device.CreateCommandEncoder();
|
wgpu::CommandEncoder encoder = device.CreateCommandEncoder();
|
||||||
encoder.BeginRenderPass(&renderPassDescriptors[0]).End();
|
encoder.BeginRenderPass(&renderPassDescriptors[0]).End();
|
||||||
wgpu::CommandBuffer commandBuffer = encoder.Finish();
|
wgpu::CommandBuffer commandBuffer = encoder.Finish();
|
||||||
|
@ -206,6 +209,9 @@ TEST_P(DepthStencilLoadOpTests, ClearMip1) {
|
||||||
|
|
||||||
// Clear first mip then the second mip. Check both mip levels.
|
// Clear first mip then the second mip. Check both mip levels.
|
||||||
TEST_P(DepthStencilLoadOpTests, ClearBothMip0Then1) {
|
TEST_P(DepthStencilLoadOpTests, ClearBothMip0Then1) {
|
||||||
|
// TODO(crbug.com/dawn/1828): depth16unorm broken on Apple GPUs.
|
||||||
|
DAWN_SUPPRESS_TEST_IF(IsApple() && GetParam().mFormat == wgpu::TextureFormat::Depth16Unorm);
|
||||||
|
|
||||||
wgpu::CommandEncoder encoder = device.CreateCommandEncoder();
|
wgpu::CommandEncoder encoder = device.CreateCommandEncoder();
|
||||||
encoder.BeginRenderPass(&renderPassDescriptors[0]).End();
|
encoder.BeginRenderPass(&renderPassDescriptors[0]).End();
|
||||||
encoder.BeginRenderPass(&renderPassDescriptors[1]).End();
|
encoder.BeginRenderPass(&renderPassDescriptors[1]).End();
|
||||||
|
@ -218,6 +224,9 @@ TEST_P(DepthStencilLoadOpTests, ClearBothMip0Then1) {
|
||||||
|
|
||||||
// Clear second mip then the first mip. Check both mip levels.
|
// Clear second mip then the first mip. Check both mip levels.
|
||||||
TEST_P(DepthStencilLoadOpTests, ClearBothMip1Then0) {
|
TEST_P(DepthStencilLoadOpTests, ClearBothMip1Then0) {
|
||||||
|
// TODO(crbug.com/dawn/1828): depth16unorm broken on Apple GPUs.
|
||||||
|
DAWN_SUPPRESS_TEST_IF(IsApple() && GetParam().mFormat == wgpu::TextureFormat::Depth16Unorm);
|
||||||
|
|
||||||
wgpu::CommandEncoder encoder = device.CreateCommandEncoder();
|
wgpu::CommandEncoder encoder = device.CreateCommandEncoder();
|
||||||
encoder.BeginRenderPass(&renderPassDescriptors[1]).End();
|
encoder.BeginRenderPass(&renderPassDescriptors[1]).End();
|
||||||
encoder.BeginRenderPass(&renderPassDescriptors[0]).End();
|
encoder.BeginRenderPass(&renderPassDescriptors[0]).End();
|
||||||
|
|
|
@ -1115,6 +1115,9 @@ TEST_P(TimestampQueryTests, ResolveTwiceToSameBuffer) {
|
||||||
// Test calling WriteTimestamp many times into separate query sets.
|
// Test calling WriteTimestamp many times into separate query sets.
|
||||||
// Regression test for crbug.com/dawn/1603.
|
// Regression test for crbug.com/dawn/1603.
|
||||||
TEST_P(TimestampQueryTests, ManyWriteTimestampDistinctQuerySets) {
|
TEST_P(TimestampQueryTests, ManyWriteTimestampDistinctQuerySets) {
|
||||||
|
// TODO(crbug.com/dawn/1829): Avoid OOM on Apple GPUs.
|
||||||
|
DAWN_SUPPRESS_TEST_IF(IsApple());
|
||||||
|
|
||||||
constexpr uint32_t kQueryCount = 100;
|
constexpr uint32_t kQueryCount = 100;
|
||||||
// Write timestamp with a different query sets many times
|
// Write timestamp with a different query sets many times
|
||||||
for (uint32_t i = 0; i < kQueryCount; ++i) {
|
for (uint32_t i = 0; i < kQueryCount; ++i) {
|
||||||
|
|
|
@ -126,49 +126,61 @@ crbug.com/dawn/0000 webgpu:util,texture,texel_data:ufloat_texel_data_in_shader:*
|
||||||
crbug.com/dawn/0000 webgpu:util,texture,texel_data:unorm_texel_data_in_shader:format="bgra8unorm-srgb" [ Failure ]
|
crbug.com/dawn/0000 webgpu:util,texture,texel_data:unorm_texel_data_in_shader:format="bgra8unorm-srgb" [ Failure ]
|
||||||
crbug.com/dawn/0000 webgpu:util,texture,texel_data:unorm_texel_data_in_shader:format="rgba8unorm-srgb" [ Failure ]
|
crbug.com/dawn/0000 webgpu:util,texture,texel_data:unorm_texel_data_in_shader:format="rgba8unorm-srgb" [ Failure ]
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# ETC2 failures on Apple GPUS
|
||||||
|
# KEEP
|
||||||
|
################################################################################
|
||||||
|
crbug.com/dawn/1830 [ mac apple dawn-backend-validation ] webgpu:api,validation,createView:format:textureFormatFeature="texture-compression-etc2";viewFormatFeature="texture-compression-etc2" [ Failure ]
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# depth16unorm failures on Apple GPUs
|
||||||
|
# KEEP
|
||||||
|
################################################################################
|
||||||
|
crbug.com/dawn/1828 [ mac apple ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";* [ Failure ]
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# depth_clip_clamp failures
|
# depth_clip_clamp failures
|
||||||
################################################################################
|
################################################################################
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth16unorm";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth24plus-stencil8";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth="_undef_";writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth=false;writeDepth=true;multisampled=false [ Failure ]
|
||||||
crbug.com/dawn/1125 [ monterey ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac intel ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
crbug.com/dawn/1125 [ ventura ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
crbug.com/dawn/1125 [ mac amd ] webgpu:api,operation,rendering,depth_clip_clamp:depth_clamp_and_clip:format="depth32float-stencil8";unclippedDepth=false;writeDepth=true;multisampled=true [ Failure ]
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# shader execution failures
|
# shader execution failures
|
||||||
|
|
Loading…
Reference in New Issue