blob: 5f6a8e73fd70f3346580a5211a81afdb1e7f4443 [file] [log] [blame]
//
// fragment_main
//
void select_089657() {
bool arg_2 = true;
float3 res = ((arg_2) ? ((1.0f).xxx) : ((1.0f).xxx));
}
void fragment_main() {
select_089657();
}
//
// compute_main
//
void select_089657() {
bool arg_2 = true;
float3 res = ((arg_2) ? ((1.0f).xxx) : ((1.0f).xxx));
}
[numthreads(1, 1, 1)]
void compute_main() {
select_089657();
}
//
// vertex_main
//
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos : SV_Position;
};
void select_089657() {
bool arg_2 = true;
float3 res = ((arg_2) ? ((1.0f).xxx) : ((1.0f).xxx));
}
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
select_089657();
VertexOutput v = tint_symbol;
return v;
}
vertex_main_outputs vertex_main() {
VertexOutput v_1 = vertex_main_inner();
vertex_main_outputs v_2 = {v_1.pos};
return v_2;
}