SPIRV-Cross/reference/opt/shaders-msl/asm/frag/default-member-names.asm.frag
Hans-Kristian Arntzen af75ef005f Update glslang and SPIRV-Tools.
A lot of changes in spirv-opt output.
Some new invalid SPIR-V was found but most of them were not significant
for SPIRV-Cross, so just marked them as invalid.
2018-09-27 11:10:22 +02:00

20 lines
249 B
GLSL

#include <metal_stdlib>
#include <simd/simd.h>
using namespace metal;
constant float _49 = {};
struct main0_out
{
float4 m_3 [[color(0)]];
};
fragment main0_out main0()
{
main0_out out = {};
out.m_3 = float4(_49);
return out;
}