2021-07-23 16:43:01 +00:00
|
|
|
intrinsics/gen/modf/bb9088.wgsl:29:24 warning: use of deprecated intrinsic
|
|
|
|
var res: vec3<f32> = modf(vec3<f32>(), &arg_1);
|
|
|
|
^^^^
|
|
|
|
|
2021-06-18 18:56:13 +00:00
|
|
|
groupshared float3 arg_1;
|
|
|
|
|
|
|
|
void modf_bb9088() {
|
|
|
|
float3 res = modf(float3(0.0f, 0.0f, 0.0f), arg_1);
|
|
|
|
}
|
|
|
|
|
2021-06-18 22:44:31 +00:00
|
|
|
struct tint_symbol_1 {
|
|
|
|
uint local_invocation_index : SV_GroupIndex;
|
|
|
|
};
|
|
|
|
|
2021-06-18 18:56:13 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
2021-06-18 22:44:31 +00:00
|
|
|
void compute_main(tint_symbol_1 tint_symbol) {
|
|
|
|
const uint local_invocation_index = tint_symbol.local_invocation_index;
|
2021-07-30 14:08:06 +00:00
|
|
|
{
|
2021-06-18 22:44:31 +00:00
|
|
|
arg_1 = float3(0.0f, 0.0f, 0.0f);
|
|
|
|
}
|
|
|
|
GroupMemoryBarrierWithGroupSync();
|
2021-06-18 18:56:13 +00:00
|
|
|
modf_bb9088();
|
|
|
|
return;
|
|
|
|
}
|