1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#pragma clang diagnostic ignored "-Wmissing-prototypes"
#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
struct main0_out
{
float FragColor [[color(0)]];
};
struct main0_in
{
float3 vUV [[user(locn0)]];
};
static inline __attribute__((always_inline))
float sample_normal2(thread const depth2d<float> tex, thread sampler uSampler, thread float3& vUV)
{
return float4(tex.sample(uSampler, vUV.xy)).x;
}
static inline __attribute__((always_inline))
float sample_normal(thread const depth2d<float> tex, thread sampler uSampler, thread float3& vUV)
{
return sample_normal2(tex, uSampler, vUV);
}
static inline __attribute__((always_inline))
float sample_comp(thread const depth2d<float> tex, thread float3& vUV, thread sampler uSamplerShadow)
{
return tex.sample_compare(uSamplerShadow, vUV.xy, vUV.z);
}
fragment main0_out main0(main0_in in [[stage_in]], depth2d<float> uTexture [[texture(0)]], sampler uSampler [[sampler(0)]], sampler uSamplerShadow [[sampler(1)]])
{
main0_out out = {};
out.FragColor = sample_normal(uTexture, uSampler, in.vUV);
out.FragColor += sample_comp(uTexture, in.vUV, uSamplerShadow);
return out;
}
|