blob: 8012549ac07c3640dd2657c37a562c15c359e032 [file] [log] [blame]
@compute @workgroup_size(1)
fn main() {
let in = 1.23;
let res = modf(in);
let fract : f32 = res.fract;
let whole : f32 = res.whole;
}