dd603eab58
Won't really be correct if the spec constant is changed outside SPIRV-Cross, but nothing we can do about that, really.
28 lines
417 B
GLSL
28 lines
417 B
GLSL
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct SpecConstArray
|
|
{
|
|
float4 samples[2];
|
|
};
|
|
|
|
struct main0_in
|
|
{
|
|
int Index [[user(locn0)]];
|
|
};
|
|
|
|
struct main0_out
|
|
{
|
|
float4 FragColor [[color(0)]];
|
|
};
|
|
|
|
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;
|
|
}
|
|
|