SDL_ClearSurface

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

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.

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.

extern (C) nothrow @nogc extern
bool
SDL_ClearSurface
(,
float r
,
float g
,
float b
,
float a
)

Return Value

Type: bool

true on success or false on failure; call SDL_GetError() for more information.

Meta