blob: 3ec5309fc888ba29a42f7cc9bf846bb168cb2047 [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_5c133c() {
float3x4 res = float3x4(float4(1.0f), float4(1.0f), float4(1.0f));
}
fragment void fragment_main() {
transpose_5c133c();
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_5c133c() {
float3x4 res = float3x4(float4(1.0f), float4(1.0f), float4(1.0f));
}
kernel void compute_main() {
transpose_5c133c();
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
};
void transpose_5c133c() {
float3x4 res = float3x4(float4(1.0f), float4(1.0f), float4(1.0f));
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
transpose_5c133c();
return out;
}
vertex vertex_main_outputs vertex_main() {
vertex_main_outputs tint_wrapper_result = {};
tint_wrapper_result.VertexOutput_pos = vertex_main_inner().pos;
return tint_wrapper_result;
}