wgpu/tests/out/msl/globals.msl

41 lines
916 B
Plaintext
Raw Normal View History

// language: metal2.0
2021-05-29 01:49:50 +00:00
#include <metal_stdlib>
#include <simd/simd.h>
using metal::uint;
2022-01-06 01:15:09 +00:00
struct _mslBufferSizes {
uint size3;
2022-01-06 01:15:09 +00:00
};
2021-12-27 02:57:47 +00:00
constexpr constant bool Foo_2 = true;
struct type_2 {
2021-05-29 02:11:39 +00:00
float inner[10u];
2021-05-29 01:49:50 +00:00
};
2021-12-27 02:57:47 +00:00
struct Foo {
metal::packed_float3 v3_;
float v1_;
};
2022-01-06 01:15:09 +00:00
typedef metal::float2 type_6[1];
2022-01-21 17:30:18 +00:00
struct type_8 {
metal::float4 inner[20];
2022-01-06 01:15:09 +00:00
};
2021-05-29 01:49:50 +00:00
kernel void main_(
threadgroup type_2& wg
, threadgroup metal::atomic_uint& at_1
, device Foo& alignment [[user(fake0)]]
, device type_6& dummy [[user(fake0)]]
, constant _mslBufferSizes& _buffer_sizes [[user(fake0)]]
2021-05-29 01:49:50 +00:00
) {
2021-12-27 02:57:47 +00:00
float Foo_1 = 1.0;
bool at = true;
2022-01-21 17:30:18 +00:00
float _e9 = alignment.v1_;
wg.inner[3] = _e9;
float _e14 = metal::float3(alignment.v3_).x;
wg.inner[2] = _e14;
wg.inner[1] = static_cast<float>(1 + (_buffer_sizes.size3 - 0 - 8) / 8);
metal::atomic_store_explicit(&at_1, 2u, metal::memory_order_relaxed);
2021-05-29 01:49:50 +00:00
return;
}