mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-03 10:45:36 +00:00
Zero the workgroup memory for all backends. We can probably disable this for the backends that support workgroup zeroing, but that's an optimization we can perform later. Fixed: tint:280 Change-Id: I9cad919ba3a15b8cedfe6939317d1f6b95425453 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/55244 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com> Reviewed-by: James Price <jrprice@google.com>
24 lines
538 B
HLSL
24 lines
538 B
HLSL
groupshared uint2 arg_1;
|
|
|
|
void frexp_e8b4d1() {
|
|
float2 tint_tmp;
|
|
float2 tint_tmp_1 = frexp(float2(0.0f, 0.0f), tint_tmp);
|
|
arg_1 = uint2(tint_tmp);
|
|
float2 res = tint_tmp_1;
|
|
}
|
|
|
|
struct tint_symbol_1 {
|
|
uint local_invocation_index : SV_GroupIndex;
|
|
};
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main(tint_symbol_1 tint_symbol) {
|
|
const uint local_invocation_index = tint_symbol.local_invocation_index;
|
|
if ((local_invocation_index == 0u)) {
|
|
arg_1 = uint2(0u, 0u);
|
|
}
|
|
GroupMemoryBarrierWithGroupSync();
|
|
frexp_e8b4d1();
|
|
return;
|
|
}
|