2020-09-25 17:35:58 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct Uniforms {
|
|
|
|
float4x4 colorXform;
|
|
|
|
};
|
|
|
|
struct Inputs {
|
|
|
|
};
|
|
|
|
struct Outputs {
|
|
|
|
float4 sk_FragColor [[color(0)]];
|
|
|
|
};
|
|
|
|
struct Globals {
|
2020-12-04 15:51:21 +00:00
|
|
|
texture2d<float> s;
|
|
|
|
sampler sSmplr;
|
2020-09-25 17:35:58 +00:00
|
|
|
};
|
|
|
|
|
2020-12-07 22:52:25 +00:00
|
|
|
|
2020-12-04 15:51:21 +00:00
|
|
|
fragment Outputs fragmentMain(Inputs _in [[stage_in]], constant Uniforms& _uniforms [[buffer(0)]], texture2d<float> s[[texture(0)]], sampler sSmplr[[sampler(0)]], bool _frontFacing [[front_facing]], float4 _fragCoord [[position]]) {
|
2021-01-19 18:07:55 +00:00
|
|
|
Globals _globals{s, sSmplr};
|
2021-01-22 03:24:28 +00:00
|
|
|
(void)_globals;
|
2021-01-19 18:07:55 +00:00
|
|
|
Outputs _out;
|
2021-01-22 03:24:28 +00:00
|
|
|
(void)_out;
|
2020-09-25 17:35:58 +00:00
|
|
|
float4 tmpColor;
|
2021-01-19 18:07:55 +00:00
|
|
|
_out.sk_FragColor = (tmpColor = _globals.s.sample(_globals.sSmplr, float2(1.0)) , _uniforms.colorXform != float4x4(1.0) ? float4(clamp((_uniforms.colorXform * float4(tmpColor.xyz, 1.0)).xyz, 0.0, tmpColor.w), tmpColor.w) : tmpColor);
|
|
|
|
return _out;
|
2020-09-25 17:35:58 +00:00
|
|
|
}
|