ImDrawList_PrimRectUV function

void ImDrawList_PrimRectUV(
  1. Pointer<ImDrawList> self,
  2. ImVec2 a,
  3. ImVec2 b,
  4. ImVec2 uv_a,
  5. ImVec2 uv_b,
  6. int col,
)
void ImDrawList_PrimRectUV(
 ImDrawList* self ,
 ImVec2 a ,
 ImVec2 b ,
 ImVec2 uv_a ,
 ImVec2 uv_b ,
 uint col
);

Implementation

void ImDrawList_PrimRectUV(Pointer<ImDrawList> self, ImVec2 a, ImVec2 b,
        ImVec2 uv_a, ImVec2 uv_b, int col) =>
    _ImDrawList_PrimRectUV(self, a, b, uv_a, uv_b, col);