d6be21543d
Was causing compilation failures, jumped the merge a bit too soon.
18 lines
262 B
GLSL
18 lines
262 B
GLSL
#include <metal_stdlib>
|
|
#include <simd/simd.h>
|
|
|
|
using namespace metal;
|
|
|
|
struct main0_out
|
|
{
|
|
float4 FragColor [[color(0)]];
|
|
};
|
|
|
|
[[ early_fragment_tests ]] fragment main0_out main0()
|
|
{
|
|
main0_out out = {};
|
|
out.FragColor = float4(1.0);
|
|
return out;
|
|
}
|
|
|