ImDrawList_PrimRect function

void ImDrawList_PrimRect(
  1. Pointer<ImDrawList> self,
  2. ImVec2 a,
  3. ImVec2 b,
  4. int col
)
void ImDrawList_PrimRect(
 ImDrawList* self ,
 ImVec2 a ,
 ImVec2 b ,
 uint col
);

Implementation

void ImDrawList_PrimRect(
        Pointer<ImDrawList> self, ImVec2 a, ImVec2 b, int col) =>
    _ImDrawList_PrimRect(self, a, b, col);