mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-15 01:26:06 +00:00
This also completes the work to resolve the access controls for each storage type. Fixed: tint:846 Change-Id: Iab24057ec14620a2978ec63c4a91ba12d1bc6e9b Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/53381 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: James Price <jrprice@google.com>
32 lines
518 B
Plaintext
32 lines
518 B
Plaintext
SKIP: FAILED
|
|
|
|
|
|
fn modf_a54eca() {
|
|
var arg_1 : vec2<f32>;
|
|
var res : vec2<f32> = modf(vec2<f32>(), &(arg_1));
|
|
}
|
|
|
|
struct tint_symbol {
|
|
[[builtin(position)]]
|
|
value : vec4<f32>;
|
|
};
|
|
|
|
[[stage(vertex)]]
|
|
fn vertex_main() -> tint_symbol {
|
|
modf_a54eca();
|
|
let tint_symbol_1 : tint_symbol = tint_symbol(vec4<f32>());
|
|
return tint_symbol_1;
|
|
}
|
|
|
|
[[stage(fragment)]]
|
|
fn fragment_main() {
|
|
modf_a54eca();
|
|
}
|
|
|
|
[[stage(compute)]]
|
|
fn compute_main() {
|
|
modf_a54eca();
|
|
}
|
|
|
|
Failed to generate: error: Unknown import method: modf
|