mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 14:13:39 +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>
29 lines
561 B
GLSL
29 lines
561 B
GLSL
#version 310 es
|
|
#extension GL_AMD_gpu_shader_half_float : require
|
|
|
|
shared float16_t arg_0;
|
|
float16_t tint_workgroupUniformLoad_arg_0() {
|
|
barrier();
|
|
float16_t result = arg_0;
|
|
barrier();
|
|
return result;
|
|
}
|
|
|
|
void workgroupUniformLoad_e07d08() {
|
|
float16_t res = tint_workgroupUniformLoad_arg_0();
|
|
}
|
|
|
|
void compute_main(uint local_invocation_index) {
|
|
{
|
|
arg_0 = 0.0hf;
|
|
}
|
|
barrier();
|
|
workgroupUniformLoad_e07d08();
|
|
}
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void main() {
|
|
compute_main(gl_LocalInvocationIndex);
|
|
return;
|
|
}
|