19 lines
369 B
GLSL
19 lines
369 B
GLSL
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct main0_out
|
|
{
|
|
float4 FragColor [[color(0)]];
|
|
};
|
|
|
|
fragment main0_out main0(uint gl_SampleID [[sample_id]])
|
|
{
|
|
main0_out out = {};
|
|
float2 gl_SamplePosition = get_sample_position(gl_SampleID);
|
|
out.FragColor = float4(gl_SamplePosition, float(gl_SampleID), 1.0);
|
|
return out;
|
|
}
|
|
|