Skip to content

Commit

Permalink
Compat: Fix textureLoad with depth texture test (#3902)
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman authored Aug 15, 2024
1 parent 5c57149 commit 67dc033
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ g.test('textureLoad_with_depth_textures,computePipeline')
`,
});

const isValid = !t.isCompatibility;
const isValid = !t.isCompatibility || entryPoint === 'csWithoutDepthUsage';
t.doCreateComputePipelineTest(async, isValid, {
layout: 'auto',
compute: { module, entryPoint },
Expand Down Expand Up @@ -301,7 +301,7 @@ g.test('textureLoad_with_depth_textures,renderPipeline')
`,
});

const isValid = !t.isCompatibility;
const isValid = !t.isCompatibility || entryPoint === 'vsWithoutDepthUsage';
t.doCreateRenderPipelineTest(async, isValid, {
layout: 'auto',
vertex: { module, entryPoint },
Expand Down

0 comments on commit 67dc033

Please sign in to comment.