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