Skip to content

Commit b5c99a6

Browse files
committed
nonuniform: sampling images is always declared NonUniform
1 parent f6da233 commit b5c99a6

38 files changed

+246
-122
lines changed

crates/spirv-std/src/image.rs

+138-31
Large diffs are not rendered by default.

tests/ui/image/components.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// build-pass
2-
// compile-flags: -Ctarget-feature=+StorageImageExtendedFormats
2+
// compile-flags: -Ctarget-feature=+StorageImageExtendedFormats,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
33

44
use glam::{Vec2, Vec3, Vec4};
55
use spirv_std::spirv;
6-
use spirv_std::{arch, Image};
6+
use spirv_std::{Image, arch};
77

88
#[spirv(fragment)]
99
pub fn main(

tests/ui/image/fetch.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// build-pass
2+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
23

34
use spirv_std::spirv;
4-
use spirv_std::{arch, Image};
5+
use spirv_std::{Image, arch};
56

67
#[spirv(fragment)]
78
pub fn main(

tests/ui/image/format.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// build-pass
2+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
23

34
use spirv_std::spirv;
4-
use spirv_std::{arch, Image};
5+
use spirv_std::{Image, arch};
56

67
#[spirv(fragment)]
78
pub fn main(

tests/ui/image/gather.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
// Test `OpImageGather`
22
// build-pass
3+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
34

45
use core::arch::asm;
56
use spirv_std::spirv;
6-
use spirv_std::{arch, Image, Sampler};
7+
use spirv_std::{Image, Sampler, arch};
78

89
#[spirv(fragment)]
910
pub fn main(

tests/ui/image/gather_err.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-fail
22
// normalize-stderr-test "\S*/crates/spirv-std/src/" -> "$$SPIRV_STD_SRC/"
3-
// compile-flags: -Ctarget-feature=+Sampled1D
3+
// compile-flags: -Ctarget-feature=+Sampled1D,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
44

5-
use spirv_std::{arch, spirv, Image, Sampler};
5+
use spirv_std::{Image, Sampler, arch, spirv};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/gather_err.stderr

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ error[E0277]: the trait bound `Image<f32, 0, 2, 0, 0, 1, 0, 4>: HasGather` is no
99
Image<SampledType, 3, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
1010
Image<SampledType, 4, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
1111
note: required by a bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, spirv_std::::image::{impl#1}::{constant#0}, SAMPLED, FORMAT, COMPONENTS>::gather`
12-
--> $SPIRV_STD_SRC/image.rs:197:15
12+
--> $SPIRV_STD_SRC/image.rs:199:15
1313
|
14-
190 | pub fn gather<F>(
14+
192 | pub fn gather<F>(
1515
| ------ required by a bound in this associated function
1616
...
17-
197 | Self: HasGather,
17+
199 | Self: HasGather,
1818
| ^^^^^^^^^ required by this bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, spirv_std::::image::{impl#1}::{constant#0}, SAMPLED, FORMAT, COMPONENTS>::gather`
1919

2020
error[E0277]: the trait bound `Image<f32, 2, 2, 0, 0, 1, 0, 4>: HasGather` is not satisfied
@@ -28,12 +28,12 @@ error[E0277]: the trait bound `Image<f32, 2, 2, 0, 0, 1, 0, 4>: HasGather` is no
2828
Image<SampledType, 3, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
2929
Image<SampledType, 4, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
3030
note: required by a bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, spirv_std::::image::{impl#1}::{constant#0}, SAMPLED, FORMAT, COMPONENTS>::gather`
31-
--> $SPIRV_STD_SRC/image.rs:197:15
31+
--> $SPIRV_STD_SRC/image.rs:199:15
3232
|
33-
190 | pub fn gather<F>(
33+
192 | pub fn gather<F>(
3434
| ------ required by a bound in this associated function
3535
...
36-
197 | Self: HasGather,
36+
199 | Self: HasGather,
3737
| ^^^^^^^^^ required by this bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, spirv_std::::image::{impl#1}::{constant#0}, SAMPLED, FORMAT, COMPONENTS>::gather`
3838

3939
error: aborting due to 2 previous errors

tests/ui/image/image_with.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// build-pass
2+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
23

34
use spirv_std::spirv;
4-
use spirv_std::{arch, image::sample_with, image::ImageWithMethods, Image, Sampler};
5+
use spirv_std::{Image, Sampler, arch, image::ImageWithMethods, image::sample_with};
56

67
#[spirv(fragment)]
78
pub fn main(

tests/ui/image/issue_527.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// build-pass
2-
// compile-flags: -C target-feature=+StorageImageWriteWithoutFormat
2+
// compile-flags: -C target-feature=+StorageImageWriteWithoutFormat,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
33

44
use glam::*;
55
use spirv_std::spirv;

tests/ui/image/query/query_levels.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-pass
2-
// compile-flags: -C target-feature=+ImageQuery
2+
// compile-flags: -C target-feature=+ImageQuery,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
33

44
use spirv_std::spirv;
5-
use spirv_std::{arch, Image};
5+
use spirv_std::{Image, arch};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/query/query_levels_err.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ error[E0277]: the trait bound `Image<f32, 4, 2, 0, 0, 1, 0, 4>: HasQueryLevels`
1010
Image<SampledType, 2, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>
1111
Image<SampledType, 3, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>
1212
note: required by a bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>::query_levels`
13-
--> $SPIRV_STD_SRC/image.rs:881:15
13+
--> $SPIRV_STD_SRC/image.rs:951:15
1414
|
15-
879 | pub fn query_levels(&self) -> u32
15+
949 | pub fn query_levels(&self) -> u32
1616
| ------------ required by a bound in this associated function
17-
880 | where
18-
881 | Self: HasQueryLevels,
17+
950 | where
18+
951 | Self: HasQueryLevels,
1919
| ^^^^^^^^^^^^^^ required by this bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>::query_levels`
2020

2121
error: aborting due to 1 previous error

tests/ui/image/query/query_lod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-pass
2-
// compile-flags: -C target-feature=+ImageQuery
2+
// compile-flags: -C target-feature=+ImageQuery,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
33

44
use spirv_std::spirv;
5-
use spirv_std::{arch, Image, Sampler};
5+
use spirv_std::{Image, Sampler, arch};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/query/query_lod_err.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-fail
22
// normalize-stderr-test "\S*/crates/spirv-std/src/" -> "$$SPIRV_STD_SRC/"
3-
// compile-flags: -C target-feature=+ImageQuery
3+
// compile-flags: -C target-feature=+ImageQuery,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
44

5-
use spirv_std::{arch, spirv, Image, Sampler};
5+
use spirv_std::{Image, Sampler, arch, spirv};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/query/query_lod_err.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ error[E0277]: the trait bound `Image<f32, 4, 2, 0, 0, 1, 0, 4>: HasQueryLevels`
1010
Image<SampledType, 2, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>
1111
Image<SampledType, 3, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>
1212
note: required by a bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>::query_lod`
13-
--> $SPIRV_STD_SRC/image.rs:907:15
13+
--> $SPIRV_STD_SRC/image.rs:980:15
1414
|
15-
901 | pub fn query_lod(
15+
974 | pub fn query_lod(
1616
| --------- required by a bound in this associated function
1717
...
18-
907 | Self: HasQueryLevels,
18+
980 | Self: HasQueryLevels,
1919
| ^^^^^^^^^^^^^^ required by this bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>::query_lod`
2020

2121
error: aborting due to 1 previous error

tests/ui/image/query/query_samples.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-pass
2-
// compile-flags: -C target-feature=+ImageQuery
2+
// compile-flags: -C target-feature=+ImageQuery,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
33

44
use spirv_std::spirv;
5-
use spirv_std::{arch, Image};
5+
use spirv_std::{Image, arch};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/query/query_size.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-pass
2-
// compile-flags: -C target-feature=+ImageQuery
2+
// compile-flags: -C target-feature=+ImageQuery,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
33

44
use spirv_std::spirv;
5-
use spirv_std::{arch, Image};
5+
use spirv_std::{Image, arch};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/query/query_size_err.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-fail
22
// normalize-stderr-test "\S*/crates/spirv-std/src/" -> "$$SPIRV_STD_SRC/"
3-
// compile-flags: -C target-feature=+ImageQuery
3+
// compile-flags: -C target-feature=+ImageQuery,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
44

5-
use spirv_std::{arch, spirv, Image};
5+
use spirv_std::{Image, arch, spirv};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/query/query_size_err.stderr

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
error[E0277]: the trait bound `Image<f32, 1, 2, 0, 0, 1, 0, 4>: HasQuerySize` is not satisfied
2-
--> $DIR/query_size_err.rs:12:21
3-
|
4-
12 | *output = image.query_size();
5-
| ^^^^^^^^^^ the trait `HasQuerySize` is not implemented for `Image<f32, 1, 2, 0, 0, 1, 0, 4>`
6-
|
7-
= help: the following other types implement trait `HasQuerySize`:
8-
Image<SampledType, 0, DEPTH, ARRAYED, 0, 0, FORMAT, COMPONENTS>
9-
Image<SampledType, 0, DEPTH, ARRAYED, 0, 2, FORMAT, COMPONENTS>
10-
Image<SampledType, 0, DEPTH, ARRAYED, 1, SAMPLED, FORMAT, COMPONENTS>
11-
Image<SampledType, 1, DEPTH, ARRAYED, 0, 0, FORMAT, COMPONENTS>
12-
Image<SampledType, 1, DEPTH, ARRAYED, 0, 2, FORMAT, COMPONENTS>
13-
Image<SampledType, 1, DEPTH, ARRAYED, 1, SAMPLED, FORMAT, COMPONENTS>
14-
Image<SampledType, 2, DEPTH, ARRAYED, 0, 0, FORMAT, COMPONENTS>
15-
Image<SampledType, 2, DEPTH, ARRAYED, 0, 2, FORMAT, COMPONENTS>
16-
and 6 others
2+
--> $DIR/query_size_err.rs:12:21
3+
|
4+
12 | *output = image.query_size();
5+
| ^^^^^^^^^^ the trait `HasQuerySize` is not implemented for `Image<f32, 1, 2, 0, 0, 1, 0, 4>`
6+
|
7+
= help: the following other types implement trait `HasQuerySize`:
8+
Image<SampledType, 0, DEPTH, ARRAYED, 0, 0, FORMAT, COMPONENTS>
9+
Image<SampledType, 0, DEPTH, ARRAYED, 0, 2, FORMAT, COMPONENTS>
10+
Image<SampledType, 0, DEPTH, ARRAYED, 1, SAMPLED, FORMAT, COMPONENTS>
11+
Image<SampledType, 1, DEPTH, ARRAYED, 0, 0, FORMAT, COMPONENTS>
12+
Image<SampledType, 1, DEPTH, ARRAYED, 0, 2, FORMAT, COMPONENTS>
13+
Image<SampledType, 1, DEPTH, ARRAYED, 1, SAMPLED, FORMAT, COMPONENTS>
14+
Image<SampledType, 2, DEPTH, ARRAYED, 0, 0, FORMAT, COMPONENTS>
15+
Image<SampledType, 2, DEPTH, ARRAYED, 0, 2, FORMAT, COMPONENTS>
16+
and 6 others
1717
note: required by a bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>::query_size`
18-
--> $SPIRV_STD_SRC/image.rs:938:15
19-
|
20-
936 | pub fn query_size<Size: ImageCoordinate<u32, DIM, ARRAYED> + Default>(&self) -> Size
21-
| ---------- required by a bound in this associated function
22-
937 | where
23-
938 | Self: HasQuerySize,
24-
| ^^^^^^^^^^^^ required by this bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>::query_size`
18+
--> $SPIRV_STD_SRC/image.rs:1011:15
19+
|
20+
1009 | pub fn query_size<Size: ImageCoordinate<u32, DIM, ARRAYED> + Default>(&self) -> Size
21+
| ---------- required by a bound in this associated function
22+
1010 | where
23+
1011 | Self: HasQuerySize,
24+
| ^^^^^^^^^^^^ required by this bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, MULTISAMPLED, SAMPLED, FORMAT, COMPONENTS>::query_size`
2525

2626
error: aborting due to 1 previous error
2727

tests/ui/image/query/query_size_lod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-pass
2-
// compile-flags: -C target-feature=+ImageQuery
2+
// compile-flags: -C target-feature=+ImageQuery,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
33

44
use spirv_std::spirv;
5-
use spirv_std::{arch, Image};
5+
use spirv_std::{Image, arch};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/query/query_size_lod_err.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-fail
22
// normalize-stderr-test "\S*/crates/spirv-std/src/" -> "$$SPIRV_STD_SRC/"
3-
// compile-flags: -C target-feature=+ImageQuery
3+
// compile-flags: -C target-feature=+ImageQuery,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
44

5-
use spirv_std::{arch, spirv, Image};
5+
use spirv_std::{Image, arch, spirv};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/query/query_size_lod_err.stderr

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
error[E0277]: the trait bound `Image<f32, 4, 2, 0, 0, 1, 0, 4>: HasQuerySizeLod` is not satisfied
2-
--> $DIR/query_size_lod_err.rs:12:21
3-
|
4-
12 | *output = image.query_size_lod(0);
5-
| ^^^^^^^^^^^^^^ the trait `HasQuerySizeLod` is not implemented for `Image<f32, 4, 2, 0, 0, 1, 0, 4>`
6-
|
7-
= help: the following other types implement trait `HasQuerySizeLod`:
8-
Image<SampledType, 0, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
9-
Image<SampledType, 1, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
10-
Image<SampledType, 2, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
11-
Image<SampledType, 3, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
2+
--> $DIR/query_size_lod_err.rs:12:21
3+
|
4+
12 | *output = image.query_size_lod(0);
5+
| ^^^^^^^^^^^^^^ the trait `HasQuerySizeLod` is not implemented for `Image<f32, 4, 2, 0, 0, 1, 0, 4>`
6+
|
7+
= help: the following other types implement trait `HasQuerySizeLod`:
8+
Image<SampledType, 0, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
9+
Image<SampledType, 1, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
10+
Image<SampledType, 2, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
11+
Image<SampledType, 3, DEPTH, ARRAYED, 0, SAMPLED, FORMAT, COMPONENTS>
1212
note: required by a bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, spirv_std::::image::{impl#7}::{constant#0}, SAMPLED, FORMAT, COMPONENTS>::query_size_lod`
13-
--> $SPIRV_STD_SRC/image.rs:982:15
14-
|
15-
977 | pub fn query_size_lod<Size: ImageCoordinate<u32, DIM, ARRAYED> + Default>(
16-
| -------------- required by a bound in this associated function
13+
--> $SPIRV_STD_SRC/image.rs:1057:15
14+
|
15+
1052 | pub fn query_size_lod<Size: ImageCoordinate<u32, DIM, ARRAYED> + Default>(
16+
| -------------- required by a bound in this associated function
1717
...
18-
982 | Self: HasQuerySizeLod,
19-
| ^^^^^^^^^^^^^^^ required by this bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, spirv_std::::image::{impl#7}::{constant#0}, SAMPLED, FORMAT, COMPONENTS>::query_size_lod`
18+
1057 | Self: HasQuerySizeLod,
19+
| ^^^^^^^^^^^^^^^ required by this bound in `Image::<SampledType, DIM, DEPTH, ARRAYED, spirv_std::::image::{impl#7}::{constant#0}, SAMPLED, FORMAT, COMPONENTS>::query_size_lod`
2020

2121
error: aborting due to 1 previous error
2222

tests/ui/image/read.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Test `OpImageRead`
22
// build-pass
3-
// compile-flags: -C target-feature=+StorageImageReadWithoutFormat
3+
// compile-flags: -C target-feature=+StorageImageReadWithoutFormat,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
44

55
use spirv_std::spirv;
6-
use spirv_std::{arch, Image};
6+
use spirv_std::{Image, arch};
77

88
#[spirv(fragment)]
99
pub fn main(

tests/ui/image/read_subpass.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// build-pass
2-
// compile-flags: -C target-feature=+InputAttachment
2+
// compile-flags: -C target-feature=+InputAttachment,+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
33

44
use spirv_std::spirv;
5-
use spirv_std::{arch, Image};
5+
use spirv_std::{Image, arch};
66

77
#[spirv(fragment)]
88
pub fn main(

tests/ui/image/sample.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
// Test `OpImageSampleImplicitLod`
22
// build-pass
3+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
34

45
use spirv_std::spirv;
5-
use spirv_std::{arch, Image, Sampler};
6+
use spirv_std::{Image, Sampler, arch};
67

78
#[spirv(fragment)]
89
pub fn main(

tests/ui/image/sample_bias.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
// Test `OpImageSampleImplicitLod` Bias
22
// build-pass
3+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
34

45
use spirv_std::spirv;
5-
use spirv_std::{arch, Image, Sampler};
6+
use spirv_std::{Image, Sampler, arch};
67

78
#[spirv(fragment)]
89
pub fn main(

tests/ui/image/sample_depth_reference/sample.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
// Test `OpImageSampleDrefImplicitLod`
22
// build-pass
3+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
34

45
use spirv_std::spirv;
5-
use spirv_std::{arch, Image, Sampler};
6+
use spirv_std::{Image, Sampler, arch};
67

78
#[spirv(fragment)]
89
pub fn main(

tests/ui/image/sample_depth_reference/sample_gradient.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Test `OpImageSampleDrefExplicitLod`
22
// build-pass
3+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
34

45
use spirv_std::spirv;
56
use spirv_std::{Image, Sampler};

tests/ui/image/sample_depth_reference/sample_lod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Test `OpImageSampleDrefExplicitLod`
22
// build-pass
3+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
34

45
use spirv_std::spirv;
56
use spirv_std::{Image, Sampler};

tests/ui/image/sample_depth_reference_with_project_coordinate/sample.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
// Test `OpImageSampleProjDrefImplicitLod`
22
// build-pass
3+
// compile-flags: -Ctarget-feature=+ShaderNonUniform,+ext:SPV_EXT_descriptor_indexing
34

45
use spirv_std::spirv;
5-
use spirv_std::{arch, Image, Sampler};
6+
use spirv_std::{Image, Sampler, arch};
67

78
#[spirv(fragment)]
89
pub fn main(

0 commit comments

Comments
 (0)