ImDrawList_AddRectFilled function

void ImDrawList_AddRectFilled(
  1. Pointer<ImDrawList> self,
  2. ImVec2 p_min,
  3. ImVec2 p_max,
  4. int col,
  5. double rounding,
  6. int flags
)
void ImDrawList_AddRectFilled(
 ImDrawList* self ,
 ImVec2 p_min ,
 ImVec2 p_max ,
 uint col ,
 float rounding ,
 ImDrawFlags flags
);

Implementation

void ImDrawList_AddRectFilled(Pointer<ImDrawList> self, ImVec2 p_min,
        ImVec2 p_max, int col, double rounding, int flags) =>
    _ImDrawList_AddRectFilled(self, p_min, p_max, col, rounding, flags);