~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/auxiliary/gallivm/lp_bld_ir_common.h

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
struct lp_exec_mask {
49
49
   struct lp_build_context *bld;
50
50
 
51
 
   boolean has_mask;
52
 
   boolean ret_in_main;
 
51
   bool has_mask;
 
52
   bool ret_in_main;
53
53
 
54
54
   LLVMTypeRef int_vec_type;
55
55
 
76
76
         LLVMValueRef switch_val;
77
77
         LLVMValueRef switch_mask;
78
78
         LLVMValueRef switch_mask_default;
79
 
         boolean switch_in_default;
 
79
         bool switch_in_default;
80
80
         unsigned switch_pc;
81
81
      } switch_stack[LP_MAX_TGSI_NESTING];
82
82
      int switch_stack_size;
83
83
      LLVMValueRef switch_val;
84
84
      LLVMValueRef switch_mask_default; /* reverse of switch mask used for default */
85
 
      boolean switch_in_default;        /* if switch exec is currently in default */
 
85
      bool switch_in_default;        /* if switch exec is currently in default */
86
86
      unsigned switch_pc;               /* when used points to default or endswitch-1 */
87
87
 
88
88
      LLVMValueRef loop_limiter;