mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-12 16:15:55 +00:00
Accept any type in the intrinsics definition, and then manually validate that there are no atomics in the type. Add manual E2E tests for composite types. Use the BuiltinPolyfill transform to implement it for all backends. Update the uniformity analysis with special-case tags for the builtin. Fixed: tint:1780 Change-Id: I95786dff4df70a0b16ed1c53b853b5d0ec6bc501 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/114862 Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: James Price <jrprice@google.com> Kokoro: James Price <jrprice@google.com>
31 lines
642 B
HLSL
31 lines
642 B
HLSL
groupshared uint arg_0;
|
|
|
|
uint tint_workgroupUniformLoad_arg_0() {
|
|
GroupMemoryBarrierWithGroupSync();
|
|
const uint result = arg_0;
|
|
GroupMemoryBarrierWithGroupSync();
|
|
return result;
|
|
}
|
|
|
|
void workgroupUniformLoad_37307c() {
|
|
uint res = tint_workgroupUniformLoad_arg_0();
|
|
}
|
|
|
|
struct tint_symbol_1 {
|
|
uint local_invocation_index : SV_GroupIndex;
|
|
};
|
|
|
|
void compute_main_inner(uint local_invocation_index) {
|
|
{
|
|
arg_0 = 0u;
|
|
}
|
|
GroupMemoryBarrierWithGroupSync();
|
|
workgroupUniformLoad_37307c();
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main(tint_symbol_1 tint_symbol) {
|
|
compute_main_inner(tint_symbol.local_invocation_index);
|
|
return;
|
|
}
|