2021-07-26 22:02:28 +00:00
|
|
|
[[group(1), binding(0)]] var arg_0 : texture_external;
|
2021-06-09 08:30:57 +00:00
|
|
|
|
|
|
|
fn ignore_5c9edf() {
|
|
|
|
ignore(arg_0);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[stage(vertex)]]
|
|
|
|
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
|
|
|
|
ignore_5c9edf();
|
|
|
|
return vec4<f32>();
|
|
|
|
}
|
|
|
|
|
|
|
|
[[stage(fragment)]]
|
|
|
|
fn fragment_main() {
|
|
|
|
ignore_5c9edf();
|
|
|
|
}
|
|
|
|
|
2021-06-29 18:39:44 +00:00
|
|
|
[[stage(compute), workgroup_size(1)]]
|
2021-06-09 08:30:57 +00:00
|
|
|
fn compute_main() {
|
|
|
|
ignore_5c9edf();
|
|
|
|
}
|