mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-03 10:45:36 +00:00
The BuiltinPolyfill transform expects the DirectVariableAccess transform to run after it, but this regressed as part of https://dawn-review.googlesource.com/c/dawn/+/122203 Add unit test along with e2e 1926.wgsl test. Bug: tint:1926 Change-Id: I5107453ce152b12e6f2f36930846e1fffa775708 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/131020 Reviewed-by: James Price <jrprice@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
34 lines
773 B
HLSL
34 lines
773 B
HLSL
groupshared float16_t arg_0;
|
|
|
|
float16_t tint_workgroupUniformLoad_arg_0() {
|
|
GroupMemoryBarrierWithGroupSync();
|
|
const float16_t result = arg_0;
|
|
GroupMemoryBarrierWithGroupSync();
|
|
return result;
|
|
}
|
|
|
|
RWByteAddressBuffer prevent_dce : register(u0, space2);
|
|
|
|
void workgroupUniformLoad_e07d08() {
|
|
float16_t res = tint_workgroupUniformLoad_arg_0();
|
|
prevent_dce.Store<float16_t>(0u, res);
|
|
}
|
|
|
|
struct tint_symbol_1 {
|
|
uint local_invocation_index : SV_GroupIndex;
|
|
};
|
|
|
|
void compute_main_inner(uint local_invocation_index) {
|
|
{
|
|
arg_0 = float16_t(0.0h);
|
|
}
|
|
GroupMemoryBarrierWithGroupSync();
|
|
workgroupUniformLoad_e07d08();
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main(tint_symbol_1 tint_symbol) {
|
|
compute_main_inner(tint_symbol.local_invocation_index);
|
|
return;
|
|
}
|