22 lines
554 B
Metal
22 lines
554 B
Metal
|
#include <metal_stdlib>
|
||
|
#include <simd/simd.h>
|
||
|
using namespace metal;
|
||
|
struct Inputs {
|
||
|
};
|
||
|
struct Outputs {
|
||
|
float4 sk_FragColor [[color(0)]];
|
||
|
};
|
||
|
struct Globals {
|
||
|
bool4 a;
|
||
|
};
|
||
|
|
||
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
||
|
Globals globalStruct{{}};
|
||
|
thread Globals* _globals = &globalStruct;
|
||
|
(void)_globals;
|
||
|
Outputs _outputStruct;
|
||
|
thread Outputs* _out = &_outputStruct;
|
||
|
_out->sk_FragColor.x = float(not(_globals->a).x ? 1 : 0);
|
||
|
return *_out;
|
||
|
}
|