SDL_SetSurfaceColorspace - Man Page

Set the colorspace used by a surface.

Header File

Defined in SDL3/SDL_surface.h

Synopsis

#include "SDL3/SDL.h"

bool SDL_SetSurfaceColorspace(SDL_Surface *surface, SDL_Colorspace colorspace);

Description

Setting the colorspace doesn't change the pixels, only how they are interpreted in color operations.

Function Parameters

surface

the SDL_Surface
structure to update.

colorspace

an SDL_Colorspace
value describing the surface colorspace.

Return Value

Returns true on success or false on failure; call

SDL_GetError () for more information.

Availability

This function is available since SDL 3.2.0.

See Also

·(3), SDL_GetSurfaceColorspace(3)

Referenced By

SDL_GetSurfaceColorspace(3).

SDL 3.2.2 Simple Directmedia Layer SDL3 FUNCTIONS