blob: 46f88b78e603f5ee040b30a7b249acb8b252db50 [file] [log] [blame]
fn exp_dad791() {
const arg_0 = vec4(1.0);
var res = exp(arg_0);
}
@fragment
fn fragment_main() {
exp_dad791();
}
@compute @workgroup_size(1)
fn compute_main() {
exp_dad791();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
exp_dad791();
return out;
}