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