blob: 770435045bfe1cb9ce7dd442ef160614a7f79f1e [file] [log] [blame]
struct modf_result_f32 {
float fract;
float whole;
};
void modf_c15f48() {
modf_result_f32 res = {-0.5f, -1.0f};
}
void fragment_main() {
modf_c15f48();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
modf_c15f48();
return;
}
struct VertexOutput {
float4 pos;
};
struct tint_symbol_1 {
float4 pos : SV_Position;
};
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
modf_c15f48();
return tint_symbol;
}
tint_symbol_1 vertex_main() {
VertexOutput inner_result = vertex_main_inner();
tint_symbol_1 wrapper_result = (tint_symbol_1)0;
wrapper_result.pos = inner_result.pos;
return wrapper_result;
}