blob: 66dfdec83e3fe8a0f38951864c3f1a8a8fec85c6 [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_84a763() {
float4x2 res = float4x2(float2(1.0f), float2(1.0f), float2(1.0f), float2(1.0f));
}
struct VertexOutput {
float4 pos;
};
fragment void fragment_main() {
transpose_84a763();
return;
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_84a763() {
float4x2 res = float4x2(float2(1.0f), float2(1.0f), float2(1.0f), float2(1.0f));
}
struct VertexOutput {
float4 pos;
};
kernel void compute_main() {
transpose_84a763();
return;
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_84a763() {
float4x2 res = float4x2(float2(1.0f), float2(1.0f), float2(1.0f), float2(1.0f));
}
struct VertexOutput {
float4 pos;
};
struct tint_symbol {
float4 pos [[position]];
};
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
transpose_84a763();
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;
}