2021-07-23 16:43:01 +00:00
|
|
|
intrinsics/gen/frexp/b87f4e.wgsl:29:24 warning: use of deprecated intrinsic
|
|
|
|
var res: vec4<f32> = frexp(vec4<f32>(), &arg_1);
|
|
|
|
^^^^^
|
|
|
|
|
2021-06-18 18:56:13 +00:00
|
|
|
var<workgroup> arg_1 : vec4<i32>;
|
|
|
|
|
|
|
|
fn frexp_b87f4e() {
|
|
|
|
var res : vec4<f32> = frexp(vec4<f32>(), &(arg_1));
|
|
|
|
}
|
|
|
|
|
2021-06-29 18:39:44 +00:00
|
|
|
[[stage(compute), workgroup_size(1)]]
|
2021-06-18 18:56:13 +00:00
|
|
|
fn compute_main() {
|
|
|
|
frexp_b87f4e();
|
|
|
|
}
|