2019-09-17 19:11:19 +00:00
|
|
|
#pragma clang diagnostic ignored "-Wmissing-prototypes"
|
2019-08-14 15:09:39 +00:00
|
|
|
#pragma clang diagnostic ignored "-Wmissing-braces"
|
|
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
|
|
|
2019-05-13 12:58:27 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
|
2019-09-17 19:11:19 +00:00
|
|
|
template<typename T, size_t Num>
|
|
|
|
struct spvUnsafeArray
|
|
|
|
{
|
|
|
|
T elements[Num ? Num : 1];
|
|
|
|
|
|
|
|
thread T& operator [] (size_t pos) thread
|
|
|
|
{
|
|
|
|
return elements[pos];
|
|
|
|
}
|
|
|
|
constexpr const thread T& operator [] (size_t pos) const thread
|
|
|
|
{
|
|
|
|
return elements[pos];
|
|
|
|
}
|
|
|
|
|
|
|
|
device T& operator [] (size_t pos) device
|
|
|
|
{
|
|
|
|
return elements[pos];
|
|
|
|
}
|
|
|
|
constexpr const device T& operator [] (size_t pos) const device
|
|
|
|
{
|
|
|
|
return elements[pos];
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr const constant T& operator [] (size_t pos) const constant
|
|
|
|
{
|
|
|
|
return elements[pos];
|
|
|
|
}
|
|
|
|
|
|
|
|
threadgroup T& operator [] (size_t pos) threadgroup
|
|
|
|
{
|
|
|
|
return elements[pos];
|
|
|
|
}
|
|
|
|
constexpr const threadgroup T& operator [] (size_t pos) const threadgroup
|
|
|
|
{
|
|
|
|
return elements[pos];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-13 12:58:27 +00:00
|
|
|
struct UBO
|
|
|
|
{
|
2019-09-17 19:11:19 +00:00
|
|
|
spvUnsafeArray<float4, 64> v;
|
2019-05-13 12:58:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SSBO
|
|
|
|
{
|
2019-09-17 19:11:19 +00:00
|
|
|
spvUnsafeArray<float4, 1> v;
|
2019-05-13 12:58:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct main0_out
|
|
|
|
{
|
|
|
|
float4 FragColor [[color(0)]];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct main0_in
|
|
|
|
{
|
|
|
|
int vIndex [[user(locn0)]];
|
|
|
|
float2 vUV [[user(locn1)]];
|
|
|
|
};
|
|
|
|
|
2019-06-21 10:44:33 +00:00
|
|
|
fragment main0_out main0(main0_in in [[stage_in]], constant UBO* ubos_0 [[buffer(0)]], constant UBO* ubos_1 [[buffer(1)]], const device SSBO* ssbos_0 [[buffer(2)]], const device SSBO* ssbos_1 [[buffer(3)]], array<texture2d<float>, 8> uSamplers [[texture(0)]], array<texture2d<float>, 8> uCombinedSamplers [[texture(8)]], array<sampler, 7> uSamps [[sampler(0)]], array<sampler, 8> uCombinedSamplersSmplr [[sampler(7)]])
|
2019-05-13 12:58:27 +00:00
|
|
|
{
|
2019-09-17 19:11:19 +00:00
|
|
|
spvUnsafeArray<constant UBO*, 2> ubos =
|
2019-05-13 12:58:27 +00:00
|
|
|
{
|
|
|
|
ubos_0,
|
|
|
|
ubos_1,
|
|
|
|
};
|
|
|
|
|
2019-09-17 19:11:19 +00:00
|
|
|
spvUnsafeArray<const device SSBO*, 2> ssbos =
|
2019-05-13 12:58:27 +00:00
|
|
|
{
|
|
|
|
ssbos_0,
|
|
|
|
ssbos_1,
|
|
|
|
};
|
|
|
|
|
|
|
|
main0_out out = {};
|
|
|
|
int i = in.vIndex;
|
2019-07-11 23:12:08 +00:00
|
|
|
int _25 = i + 10;
|
|
|
|
int _37 = i + 40;
|
|
|
|
out.FragColor = uSamplers[_25].sample(uSamps[_37], in.vUV);
|
|
|
|
int _53 = i + 10;
|
|
|
|
out.FragColor = uCombinedSamplers[_53].sample(uCombinedSamplersSmplr[_53], in.vUV);
|
|
|
|
int _69 = i + 20;
|
|
|
|
int _73 = i + 40;
|
|
|
|
out.FragColor += ubos[(_69)]->v[_73];
|
|
|
|
int _87 = i + 50;
|
|
|
|
int _91 = i + 60;
|
|
|
|
out.FragColor += ssbos[(_87)]->v[_91];
|
2019-05-13 12:58:27 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|