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