15 lines
307 B
WebGPU Shading Language
15 lines
307 B
WebGPU Shading Language
intrinsics/gen/frexp/0da285.wgsl:29:18 warning: use of deprecated intrinsic
|
|
var res: f32 = frexp(1.0, &arg_1);
|
|
^^^^^
|
|
|
|
var<workgroup> arg_1 : i32;
|
|
|
|
fn frexp_0da285() {
|
|
var res : f32 = frexp(1.0, &(arg_1));
|
|
}
|
|
|
|
[[stage(compute), workgroup_size(1)]]
|
|
fn compute_main() {
|
|
frexp_0da285();
|
|
}
|