|
1 | 1 | 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 |
17 | 17 | 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` |
25 | 25 |
|
26 | 26 | error: aborting due to 1 previous error
|
27 | 27 |
|
|
0 commit comments