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