sdlRenderFillRects function render

bool sdlRenderFillRects(
  1. Pointer<SdlRenderer> renderer,
  2. Pointer<SdlFRect> rects,
  3. int count
)

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

\param renderer the renderer which should fill multiple rectangles. \param rects a pointer to an array of destination rectangles. \param count the number of rectangles. \returns true on success or false on failure; call SDL_GetError() for more information.

\threadsafety This function should only be called on the main thread.

\since This function is available since SDL 3.2.0.

\sa SDL_RenderFillRect

extern SDL_DECLSPEC bool SDLCALL SDL_RenderFillRects(SDL_Renderer *renderer, const SDL_FRect *rects, int count)

Implementation

bool sdlRenderFillRects(
  Pointer<SdlRenderer> renderer,
  Pointer<SdlFRect> rects,
  int count,
) {
  final sdlRenderFillRectsLookupFunction = _libSdl
      .lookupFunction<
        Uint8 Function(
          Pointer<SdlRenderer> renderer,
          Pointer<SdlFRect> rects,
          Int32 count,
        ),
        int Function(
          Pointer<SdlRenderer> renderer,
          Pointer<SdlFRect> rects,
          int count,
        )
      >('SDL_RenderFillRects');
  return sdlRenderFillRectsLookupFunction(renderer, rects, count) == 1;
}