spirv-reader: add disabled test for compare sampling with explicit Lod

This is blocked by discussion at W3C
https://github.com/gpuweb/gpuweb/issues/1319

Bug: tint:482
Change-Id: Ic3a2b32fb09a431edbd7716a394a9eb3f163fb85
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/40621
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
Auto-Submit: David Neto <dneto@google.com>
This commit is contained in:
David Neto 2021-02-05 22:06:03 +00:00 committed by Commit Bot service account
parent a2fa690cda
commit 4a7981e300
1 changed files with 14 additions and 0 deletions

View File

@ -2494,6 +2494,20 @@ INSTANTIATE_TEST_SUITE_P(
ScalarConstructor[not set]{0.000000}
})"}}));
INSTANTIATE_TEST_SUITE_P(DISABLED_ImageSampleDrefExplicitLod,
SpvParserTest_SampledImageAccessTest,
// crbug.com/tint/482
// Disabled pending the outcome of
// https://github.com/gpuweb/gpuweb/issues/1319
::testing::Values(
// depth 2D
// depth 2D offset
// depth 2D-array
// depth 2D-array offset
// depth cube
// depth cube-array
));
using SpvParserTest_ImageAccessTest =
SpvParserTestBase<::testing::TestWithParam<ImageAccessCase>>;