ImDrawList_PathRect function

void ImDrawList_PathRect(
  1. Pointer<ImDrawList> self,
  2. ImVec2 rect_min,
  3. ImVec2 rect_max,
  4. double rounding,
  5. int flags,
)
void ImDrawList_PathRect(
 ImDrawList* self ,
 ImVec2 rect_min ,
 ImVec2 rect_max ,
 float rounding ,
 ImDrawFlags flags
);

Implementation

void ImDrawList_PathRect(Pointer<ImDrawList> self, ImVec2 rect_min,
        ImVec2 rect_max, double rounding, int flags) =>
    _ImDrawList_PathRect(self, rect_min, rect_max, rounding, flags);