blob: 455bd8e2c0e07a04bc39b4ed07e4ea0e34c4fe53 [file] [log] [blame]
//
// fragment_main
//
struct frexp_result_f16 {
float16_t fract;
int exp;
};
void frexp_5257dd() {
frexp_result_f16 res = {float16_t(0.5h), 1};
}
void fragment_main() {
frexp_5257dd();
return;
}
//
// compute_main
//
struct frexp_result_f16 {
float16_t fract;
int exp;
};
void frexp_5257dd() {
frexp_result_f16 res = {float16_t(0.5h), 1};
}
[numthreads(1, 1, 1)]
void compute_main() {
frexp_5257dd();
return;
}
//
// vertex_main
//
struct frexp_result_f16 {
float16_t fract;
int exp;
};
void frexp_5257dd() {
frexp_result_f16 res = {float16_t(0.5h), 1};
}
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;
frexp_5257dd();
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;
}