Skip to content

Commit

Permalink
Fixes for no attachments being an error in webgpu/compat (#3934)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kangz authored Sep 5, 2024
1 parent a5065e3 commit 9045fed
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ g.test('unsupportedStorageTextureFormats,renderPipeline')
t.doCreateRenderPipelineTest(async, isValid, {
layout: 'auto',
vertex: { module, entryPoint },
depthStencil: { format: 'depth32float', depthWriteEnabled: true, depthCompare: 'always' },
});
});

Expand Down Expand Up @@ -305,5 +306,6 @@ g.test('textureLoad_with_depth_textures,renderPipeline')
t.doCreateRenderPipelineTest(async, isValid, {
layout: 'auto',
vertex: { module, entryPoint },
depthStencil: { format: 'depth32float', depthWriteEnabled: true, depthCompare: 'always' },
});
});

0 comments on commit 9045fed

Please sign in to comment.