mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-14 03:11:29 +00:00
Add E2E tests to cover all of the parameter combinations. Mark the attribute as unimplemented in the other backends. Bug: tint:746 Change-Id: I86881ff0b224fe93670db42473341ae185eeabdd Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/56244 Kokoro: Kokoro <noreply+kokoro@google.com> Auto-Submit: James Price <jrprice@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
SKIP: FAILED
|
|
|
|
|
|
struct In {
|
|
none : f32;
|
|
flat : f32;
|
|
perspective_center : f32;
|
|
perspective_centroid : f32;
|
|
perspective_sample : f32;
|
|
linear_center : f32;
|
|
linear_centroid : f32;
|
|
linear_sample : f32;
|
|
};
|
|
|
|
[[location(0), internal(disable_validation__ignore_storage_class)]] var<in> tint_symbol : f32;
|
|
|
|
[[location(1), interpolate(flat), internal(disable_validation__ignore_storage_class)]] var<in> tint_symbol_1 : f32;
|
|
|
|
[[location(2), interpolate(perspective, center), internal(disable_validation__ignore_storage_class)]] var<in> tint_symbol_2 : f32;
|
|
|
|
[[location(3), interpolate(perspective, centroid), internal(disable_validation__ignore_storage_class)]] var<in> tint_symbol_3 : f32;
|
|
|
|
[[location(4), interpolate(perspective, sample), internal(disable_validation__ignore_storage_class)]] var<in> tint_symbol_4 : f32;
|
|
|
|
[[location(5), interpolate(linear, center), internal(disable_validation__ignore_storage_class)]] var<in> tint_symbol_5 : f32;
|
|
|
|
[[location(6), interpolate(linear, centroid), internal(disable_validation__ignore_storage_class)]] var<in> tint_symbol_6 : f32;
|
|
|
|
[[location(7), interpolate(linear, sample), internal(disable_validation__ignore_storage_class)]] var<in> tint_symbol_7 : f32;
|
|
|
|
[[stage(fragment)]]
|
|
fn main() {
|
|
}
|
|
|
|
Failed to generate: unknown decoration
|