• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1static float4 out_var_SV_TARGET = float4(0.0f, 0.0f, 0.0f, 0.0f);
2
3void main_1() {
4  out_var_SV_TARGET = float4(asfloat(0x7f800000u), asfloat(0x7f800000u), asfloat(0x7f800000u), asfloat(0x7f800000u));
5  return;
6}
7
8struct main_out {
9  float4 out_var_SV_TARGET_1;
10};
11struct tint_symbol {
12  float4 out_var_SV_TARGET_1 : SV_Target0;
13};
14
15main_out main_inner() {
16  main_1();
17  const main_out tint_symbol_1 = {out_var_SV_TARGET};
18  return tint_symbol_1;
19}
20
21tint_symbol main() {
22  const main_out inner_result = main_inner();
23  tint_symbol wrapper_result = (tint_symbol)0;
24  wrapper_result.out_var_SV_TARGET_1 = inner_result.out_var_SV_TARGET_1;
25  return wrapper_result;
26}
27