mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-26 08:44:08 +00:00
186 lines
3.7 KiB
Plaintext
186 lines
3.7 KiB
Plaintext
// language: metal1.0
|
|
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using metal::uint;
|
|
struct DefaultConstructible {
|
|
template<typename T>
|
|
operator T() && {
|
|
return T {};
|
|
}
|
|
};
|
|
|
|
struct _mslBufferSizes {
|
|
uint size0;
|
|
};
|
|
|
|
struct type_1 {
|
|
float inner[10];
|
|
};
|
|
typedef float type_4[1];
|
|
struct Globals {
|
|
type_1 a;
|
|
char _pad1[8];
|
|
metal::float4 v;
|
|
metal::float3x4 m;
|
|
type_4 d;
|
|
};
|
|
|
|
float index_array(
|
|
int i,
|
|
device Globals const& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
float _e4 = uint(i) < 10 ? globals.a.inner[i] : DefaultConstructible();
|
|
return _e4;
|
|
}
|
|
|
|
float index_dynamic_array(
|
|
int i_1,
|
|
device Globals const& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
float _e4 = uint(i_1) < 1 + (_buffer_sizes.size0 - 112 - 4) / 4 ? globals.d[i_1] : DefaultConstructible();
|
|
return _e4;
|
|
}
|
|
|
|
float index_vector(
|
|
int i_2,
|
|
device Globals const& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
float _e4 = uint(i_2) < 4 ? globals.v[i_2] : DefaultConstructible();
|
|
return _e4;
|
|
}
|
|
|
|
float index_vector_by_value(
|
|
metal::float4 v,
|
|
int i_3
|
|
) {
|
|
return uint(i_3) < 4 ? v[i_3] : DefaultConstructible();
|
|
}
|
|
|
|
metal::float4 index_matrix(
|
|
int i_4,
|
|
device Globals const& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
metal::float4 _e4 = uint(i_4) < 3 ? globals.m[i_4] : DefaultConstructible();
|
|
return _e4;
|
|
}
|
|
|
|
float index_twice(
|
|
int i_5,
|
|
int j,
|
|
device Globals const& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
float _e6 = uint(j) < 4 && uint(i_5) < 3 ? globals.m[i_5][j] : DefaultConstructible();
|
|
return _e6;
|
|
}
|
|
|
|
float index_expensive(
|
|
int i_6,
|
|
device Globals const& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
int _e9 = static_cast<int>(metal::sin(static_cast<float>(i_6) / 100.0) * 100.0);
|
|
float _e11 = uint(_e9) < 10 ? globals.a.inner[_e9] : DefaultConstructible();
|
|
return _e11;
|
|
}
|
|
|
|
float index_in_bounds(
|
|
device Globals const& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
float _e3 = globals.a.inner[9];
|
|
float _e7 = globals.v.w;
|
|
float _e13 = globals.m[2].w;
|
|
return (_e3 + _e7) + _e13;
|
|
}
|
|
|
|
void set_array(
|
|
int i_7,
|
|
float v_1,
|
|
device Globals& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
if (uint(i_7) < 10) {
|
|
globals.a.inner[i_7] = v_1;
|
|
}
|
|
return;
|
|
}
|
|
|
|
void set_dynamic_array(
|
|
int i_8,
|
|
float v_2,
|
|
device Globals& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
if (uint(i_8) < 1 + (_buffer_sizes.size0 - 112 - 4) / 4) {
|
|
globals.d[i_8] = v_2;
|
|
}
|
|
return;
|
|
}
|
|
|
|
void set_vector(
|
|
int i_9,
|
|
float v_3,
|
|
device Globals& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
if (uint(i_9) < 4) {
|
|
globals.v[i_9] = v_3;
|
|
}
|
|
return;
|
|
}
|
|
|
|
void set_matrix(
|
|
int i_10,
|
|
metal::float4 v_4,
|
|
device Globals& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
if (uint(i_10) < 3) {
|
|
globals.m[i_10] = v_4;
|
|
}
|
|
return;
|
|
}
|
|
|
|
void set_index_twice(
|
|
int i_11,
|
|
int j_1,
|
|
float v_5,
|
|
device Globals& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
if (uint(j_1) < 4 && uint(i_11) < 3) {
|
|
globals.m[i_11][j_1] = v_5;
|
|
}
|
|
return;
|
|
}
|
|
|
|
void set_expensive(
|
|
int i_12,
|
|
float v_6,
|
|
device Globals& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
int _e10 = static_cast<int>(metal::sin(static_cast<float>(i_12) / 100.0) * 100.0);
|
|
if (uint(_e10) < 10) {
|
|
globals.a.inner[_e10] = v_6;
|
|
}
|
|
return;
|
|
}
|
|
|
|
void set_in_bounds(
|
|
float v_7,
|
|
device Globals& globals,
|
|
constant _mslBufferSizes& _buffer_sizes
|
|
) {
|
|
globals.a.inner[9] = v_7;
|
|
globals.v.w = v_7;
|
|
globals.m[2].w = v_7;
|
|
return;
|
|
}
|