blob: a5099599cd6403ca04ad2bc969d76c666f3aeaa4 [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_553e90() {
float2x4 res = float2x4(float4(1.0f), float4(1.0f));
}
struct VertexOutput {
float4 pos;
};
fragment void fragment_main() {
transpose_553e90();
return;
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_553e90() {
float2x4 res = float2x4(float4(1.0f), float4(1.0f));
}
struct VertexOutput {
float4 pos;
};
kernel void compute_main() {
transpose_553e90();
return;
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_553e90() {
float2x4 res = float2x4(float4(1.0f), float4(1.0f));
}
struct VertexOutput {
float4 pos;
};
struct tint_symbol {
float4 pos [[position]];
};
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
transpose_553e90();
return out;
}
vertex tint_symbol vertex_main() {
VertexOutput const inner_result = vertex_main_inner();
tint_symbol wrapper_result = {};
wrapper_result.pos = inner_result.pos;
return wrapper_result;
}