blob: 4eacd2ce9ed68f6633603c828d84e88b56577fd3 [file] [log] [blame]
struct modf_result_vec3 {
float3 fract;
float3 whole;
};
modf_result_vec3 tint_modf(float3 param_0) {
float3 whole;
float3 fract = modf(param_0, whole);
modf_result_vec3 result = {fract, whole};
return result;
}
void modf_9b75f7() {
float3 arg_0 = (0.0f).xxx;
modf_result_vec3 res = tint_modf(arg_0);
}
struct tint_symbol {
float4 value : SV_Position;
};
float4 vertex_main_inner() {
modf_9b75f7();
return (0.0f).xxxx;
}
tint_symbol vertex_main() {
const float4 inner_result = vertex_main_inner();
tint_symbol wrapper_result = (tint_symbol)0;
wrapper_result.value = inner_result;
return wrapper_result;
}
void fragment_main() {
modf_9b75f7();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
modf_9b75f7();
return;
}