2018-02-23 14:09:28 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
|
2018-11-01 10:22:14 +00:00
|
|
|
#ifndef SPIRV_CROSS_CONSTANT_ID_10
|
|
|
|
#define SPIRV_CROSS_CONSTANT_ID_10 2
|
|
|
|
#endif
|
|
|
|
constant int Value = SPIRV_CROSS_CONSTANT_ID_10;
|
|
|
|
|
2018-02-23 14:09:28 +00:00
|
|
|
struct SpecConstArray
|
|
|
|
{
|
2018-11-01 10:22:14 +00:00
|
|
|
float4 samples[Value];
|
2018-02-23 14:09:28 +00:00
|
|
|
};
|
|
|
|
|
2018-06-12 15:41:35 +00:00
|
|
|
struct main0_out
|
2018-02-23 14:09:28 +00:00
|
|
|
{
|
2018-06-12 15:41:35 +00:00
|
|
|
float4 FragColor [[color(0)]];
|
2018-02-23 14:09:28 +00:00
|
|
|
};
|
|
|
|
|
2018-06-12 15:41:35 +00:00
|
|
|
struct main0_in
|
2018-02-23 14:09:28 +00:00
|
|
|
{
|
2018-06-12 15:41:35 +00:00
|
|
|
int Index [[user(locn0)]];
|
2018-02-23 14:09:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
fragment main0_out main0(main0_in in [[stage_in]], constant SpecConstArray& _15 [[buffer(0)]])
|
|
|
|
{
|
|
|
|
main0_out out = {};
|
|
|
|
out.FragColor = _15.samples[in.Index];
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|