blob: 51f29c602f3895f1f8e3331b22fa611d420c9740 [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_66fce8() {
float3x3 res = float3x3(float3(1.0f), float3(1.0f), float3(1.0f));
}
fragment void fragment_main() {
transpose_66fce8();
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
void transpose_66fce8() {
float3x3 res = float3x3(float3(1.0f), float3(1.0f), float3(1.0f));
}
kernel void compute_main() {
transpose_66fce8();
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
};
void transpose_66fce8() {
float3x3 res = float3x3(float3(1.0f), float3(1.0f), float3(1.0f));
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
transpose_66fce8();
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;
}