19 lines
458 B
GLSL
19 lines
458 B
GLSL
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct main0_out
|
|
{
|
|
float4 FragColor [[color(0)]];
|
|
};
|
|
|
|
fragment main0_out main0(texture2d<float> tex [[texture(0)]], sampler texSmplr [[sampler(0)]], float4 gl_FragCoord [[position]], uint gl_SampleID [[sample_id]])
|
|
{
|
|
main0_out out = {};
|
|
gl_FragCoord.xy += get_sample_position(gl_SampleID) - 0.5;
|
|
out.FragColor = tex.sample(texSmplr, gl_FragCoord.xy);
|
|
return out;
|
|
}
|
|
|