logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_ClearSurface - Clear a surface with a specific color, with floating point precision.

Availability

       This function is available since SDL 3.2.0.

Simple Directmedia Layer                           SDL 3.2.10                                SDL_ClearSurface(3)

Description

       This function handles all surface formats, and ignores any clip rectangle.

       If  the surface is YUV, the color is assumed to be in the sRGB colorspace, otherwise the color is assumed
       to be in the colorspace of the suface.

Function Parameters

surface
              the SDL_Surface
               to clear.

       r      the red component of the pixel, normally in the range 0-1.

       g      the green component of the pixel, normally in the range 0-1.

       b      the blue component of the pixel, normally in the range 0-1.

       a      the alpha component of the pixel, normally in the range 0-1.

Header File

       Defined in SDL3/SDL_surface.h

Name

       SDL_ClearSurface - Clear a surface with a specific color, with floating point precision.

Return Value

       Returns true on success or false on failure; call

       SDL_GetError () for more information.

Synopsis

#include"SDL3/SDL.h"boolSDL_ClearSurface(SDL_Surface*surface,floatr,floatg,floatb,floata);

Thread Safety

       This function is not thread safe.

See Also