pub unsafe extern "C" fn SDL_RenderFillRectsF(
    renderer: *mut SDL_Renderer,
    rects: *const SDL_FRect,
    count: c_int
) -> c_int
Expand description

Fill some number of rectangles on the current rendering target with the drawing color.

  • renderer The renderer which should fill multiple rectangles.
  • rects A pointer to an array of destination rectangles.
  • count The number of rectangles.

Returns: 0 on success, or -1 on error