macOS build fixes

This commit is contained in:
Jack Andersen 2018-10-15 17:16:40 -10:00
parent 199f38933d
commit 47e174609c
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ struct VertToFrag
};
struct BlendOut
{
float4 colorOut : [[ color(0), index(0) ]];
float4 blendOut : [[ color(0), index(1) ]];
float4 colorOut [[ color(0), index(0) ]];
float4 blendOut [[ color(0), index(1) ]];
};
fragment BlendOut fmain(VertToFrag vtf [[ stage_in ]],
sampler samp [[ sampler(0) ]],