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