| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127 |
- /*
- Simple DirectMedia Layer
- Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
- 2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
- 3. This notice may not be removed or altered from any source distribution.
- */
- #include "SDL_internal.h"
- #include "SDL_sysvideo.h"
- #include "SDL_video_c.h"
- #include "SDL_blit.h"
- #include "SDL_RLEaccel_c.h"
- #include "SDL_pixels_c.h"
- #include "SDL_yuv_c.h"
- #include "../render/SDL_sysrender.h"
- #include "SDL_surface_c.h"
- /* Check to make sure we can safely check multiplication of surface w and pitch and it won't overflow size_t */
- SDL_COMPILE_TIME_ASSERT(surface_size_assumptions,
- sizeof(int) == sizeof(Sint32) && sizeof(size_t) >= sizeof(Sint32));
- SDL_COMPILE_TIME_ASSERT(can_indicate_overflow, SDL_SIZE_MAX > SDL_MAX_SINT32);
- /* Public routines */
- SDL_bool SDL_SurfaceValid(SDL_Surface *surface)
- {
- return surface && surface->internal;
- }
- void SDL_UpdateSurfaceLockFlag(SDL_Surface *surface)
- {
- if (SDL_SurfaceHasRLE(surface)) {
- surface->flags |= SDL_SURFACE_LOCK_NEEDED;
- } else {
- surface->flags &= ~SDL_SURFACE_LOCK_NEEDED;
- }
- }
- /*
- * Calculate the pad-aligned scanline width of a surface.
- * Return SDL_SIZE_MAX on overflow.
- *
- * for FOURCC, use SDL_CalculateYUVSize()
- */
- static int SDL_CalculateRGBSize(Uint32 format, size_t width, size_t height, size_t *size, size_t *pitch, SDL_bool minimal)
- {
- if (SDL_BITSPERPIXEL(format) >= 8) {
- if (SDL_size_mul_overflow(width, SDL_BYTESPERPIXEL(format), pitch)) {
- return SDL_SetError("width * bpp would overflow");
- }
- } else {
- if (SDL_size_mul_overflow(width, SDL_BITSPERPIXEL(format), pitch)) {
- return SDL_SetError("width * bpp would overflow");
- }
- if (SDL_size_add_overflow(*pitch, 7, pitch)) {
- return SDL_SetError("aligning pitch would overflow");
- }
- *pitch /= 8;
- }
- if (!minimal) {
- /* 4-byte aligning for speed */
- if (SDL_size_add_overflow(*pitch, 3, pitch)) {
- return SDL_SetError("aligning pitch would overflow");
- }
- *pitch &= ~3;
- }
- if (SDL_size_mul_overflow(height, *pitch, size)) {
- return SDL_SetError("height * pitch would overflow");
- }
- return 0;
- }
- int SDL_CalculateSurfaceSize(SDL_PixelFormat format, int width, int height, size_t *size, size_t *pitch, SDL_bool minimalPitch)
- {
- size_t p = 0, sz = 0;
- if (size) {
- *size = 0;
- }
- if (pitch) {
- *pitch = 0;
- }
- if (SDL_ISPIXELFORMAT_FOURCC(format)) {
- if (SDL_CalculateYUVSize(format, width, height, &sz, &p) < 0) {
- /* Overflow... */
- return -1;
- }
- } else {
- if (SDL_CalculateRGBSize(format, width, height, &sz, &p, minimalPitch) < 0) {
- /* Overflow... */
- return -1;
- }
- }
- if (size) {
- *size = sz;
- }
- if (pitch) {
- *pitch = p;
- }
- return 0;
- }
- static SDL_Surface *SDL_InitializeSurface(SDL_InternalSurface *mem, int width, int height, SDL_PixelFormat format, SDL_Colorspace colorspace, SDL_PropertiesID props, void *pixels, int pitch, SDL_bool onstack)
- {
- SDL_Surface *surface = &mem->surface;
- SDL_zerop(mem);
- surface->flags = SDL_SURFACE_PREALLOCATED;
- surface->format = format;
- surface->w = width;
- surface->h = height;
- surface->pixels = pixels;
- surface->pitch = pitch;
- surface->internal = &mem->internal;
- if (onstack) {
- surface->internal->flags |= SDL_INTERNAL_SURFACE_STACK;
- }
- surface->internal->format = SDL_GetPixelFormatDetails(format);
- if (!surface->internal->format) {
- SDL_DestroySurface(surface);
- return NULL;
- }
- /* Initialize the clip rect */
- surface->internal->clip_rect.w = width;
- surface->internal->clip_rect.h = height;
- /* Allocate an empty mapping */
- surface->internal->map.info.r = 0xFF;
- surface->internal->map.info.g = 0xFF;
- surface->internal->map.info.b = 0xFF;
- surface->internal->map.info.a = 0xFF;
- if (colorspace != SDL_COLORSPACE_UNKNOWN &&
- colorspace != SDL_GetDefaultColorspaceForFormat(format)) {
- SDL_SetSurfaceColorspace(surface, colorspace);
- }
- if (props) {
- if (SDL_CopyProperties(props, SDL_GetSurfaceProperties(surface)) < 0) {
- return NULL;
- }
- }
- /* By default surfaces with an alpha mask are set up for blending */
- if (SDL_ISPIXELFORMAT_ALPHA(surface->format)) {
- SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_BLEND);
- }
- /* The surface is ready to go */
- surface->refcount = 1;
- return surface;
- }
- /*
- * Create an empty surface of the appropriate depth using the given format
- */
- SDL_Surface *SDL_CreateSurface(int width, int height, SDL_PixelFormat format)
- {
- size_t pitch, size;
- SDL_InternalSurface *mem;
- SDL_Surface *surface;
- if (width < 0) {
- SDL_InvalidParamError("width");
- return NULL;
- }
- if (height < 0) {
- SDL_InvalidParamError("height");
- return NULL;
- }
- if (SDL_CalculateSurfaceSize(format, width, height, &size, &pitch, SDL_FALSE /* not minimal pitch */) < 0) {
- /* Overflow... */
- return NULL;
- }
- /* Allocate and initialize the surface */
- mem = (SDL_InternalSurface *)SDL_malloc(sizeof(*mem));
- if (!mem) {
- return NULL;
- }
- surface = SDL_InitializeSurface(mem, width, height, format, SDL_COLORSPACE_UNKNOWN, 0, NULL, (int)pitch, SDL_FALSE);
- if (surface) {
- if (surface->w && surface->h) {
- surface->flags &= ~SDL_SURFACE_PREALLOCATED;
- surface->pixels = SDL_aligned_alloc(SDL_GetSIMDAlignment(), size);
- if (!surface->pixels) {
- SDL_DestroySurface(surface);
- return NULL;
- }
- surface->flags |= SDL_SURFACE_SIMD_ALIGNED;
- /* This is important for bitmaps */
- SDL_memset(surface->pixels, 0, size);
- }
- }
- return surface;
- }
- /*
- * Create an RGB surface from an existing memory buffer using the given
- * enum SDL_PIXELFORMAT_* format
- */
- SDL_Surface *SDL_CreateSurfaceFrom(int width, int height, SDL_PixelFormat format, void *pixels, int pitch)
- {
- SDL_InternalSurface *mem;
- if (width < 0) {
- SDL_InvalidParamError("width");
- return NULL;
- }
- if (height < 0) {
- SDL_InvalidParamError("height");
- return NULL;
- }
- if (pitch == 0 && !pixels) {
- /* The application will fill these in later with valid values */
- } else {
- size_t minimalPitch;
- if (SDL_CalculateSurfaceSize(format, width, height, NULL, &minimalPitch, SDL_TRUE /* minimal pitch */) < 0) {
- /* Overflow... */
- return NULL;
- }
- if (pitch < 0 || (size_t)pitch < minimalPitch) {
- SDL_InvalidParamError("pitch");
- return NULL;
- }
- }
- /* Allocate and initialize the surface */
- mem = (SDL_InternalSurface *)SDL_malloc(sizeof(*mem));
- if (!mem) {
- return NULL;
- }
- return SDL_InitializeSurface(mem, width, height, format, SDL_COLORSPACE_UNKNOWN, 0, pixels, pitch, SDL_FALSE);
- }
- SDL_PropertiesID SDL_GetSurfaceProperties(SDL_Surface *surface)
- {
- if (!SDL_SurfaceValid(surface)) {
- SDL_InvalidParamError("surface");
- return 0;
- }
- if (!surface->internal->props) {
- surface->internal->props = SDL_CreateProperties();
- }
- return surface->internal->props;
- }
- int SDL_SetSurfaceColorspace(SDL_Surface *surface, SDL_Colorspace colorspace)
- {
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- if (colorspace == SDL_GetDefaultColorspaceForFormat(surface->format)) {
- return 0;
- }
- return SDL_SetNumberProperty(SDL_GetSurfaceProperties(surface), SDL_PROP_SURFACE_COLORSPACE_NUMBER, colorspace);
- }
- SDL_Colorspace SDL_GetSurfaceColorspace(SDL_Surface *surface)
- {
- SDL_Colorspace colorspace;
- if (!SDL_SurfaceValid(surface)) {
- return SDL_COLORSPACE_UNKNOWN;
- }
- colorspace = (SDL_Colorspace)SDL_GetNumberProperty(surface->internal->props, SDL_PROP_SURFACE_COLORSPACE_NUMBER, SDL_COLORSPACE_UNKNOWN);
- if (colorspace == SDL_COLORSPACE_UNKNOWN) {
- colorspace = SDL_GetDefaultColorspaceForFormat(surface->format);
- }
- return colorspace;
- }
- float SDL_GetDefaultSDRWhitePoint(SDL_Colorspace colorspace)
- {
- return SDL_GetSurfaceSDRWhitePoint(NULL, colorspace);
- }
- float SDL_GetSurfaceSDRWhitePoint(SDL_Surface *surface, SDL_Colorspace colorspace)
- {
- SDL_TransferCharacteristics transfer = SDL_COLORSPACETRANSFER(colorspace);
- if (transfer == SDL_TRANSFER_CHARACTERISTICS_LINEAR ||
- transfer == SDL_TRANSFER_CHARACTERISTICS_PQ) {
- SDL_PropertiesID props;
- float default_value = 1.0f;
- if (SDL_SurfaceValid(surface)) {
- props = surface->internal->props;
- } else {
- props = 0;
- }
- if (transfer == SDL_TRANSFER_CHARACTERISTICS_PQ) {
- /* The older standards use an SDR white point of 100 nits.
- * ITU-R BT.2408-6 recommends using an SDR white point of 203 nits.
- * This is the default Chrome uses, and what a lot of game content
- * assumes, so we'll go with that.
- */
- const float DEFAULT_PQ_SDR_WHITE_POINT = 203.0f;
- default_value = DEFAULT_PQ_SDR_WHITE_POINT;
- }
- return SDL_GetFloatProperty(props, SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT, default_value);
- }
- return 1.0f;
- }
- float SDL_GetDefaultHDRHeadroom(SDL_Colorspace colorspace)
- {
- return SDL_GetSurfaceHDRHeadroom(NULL, colorspace);
- }
- float SDL_GetSurfaceHDRHeadroom(SDL_Surface *surface, SDL_Colorspace colorspace)
- {
- SDL_TransferCharacteristics transfer = SDL_COLORSPACETRANSFER(colorspace);
- if (transfer == SDL_TRANSFER_CHARACTERISTICS_LINEAR ||
- transfer == SDL_TRANSFER_CHARACTERISTICS_PQ) {
- SDL_PropertiesID props;
- float default_value = 0.0f;
- if (SDL_SurfaceValid(surface)) {
- props = surface->internal->props;
- } else {
- props = 0;
- }
- return SDL_GetFloatProperty(props, SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT, default_value);
- }
- return 1.0f;
- }
- SDL_Palette *SDL_CreateSurfacePalette(SDL_Surface *surface)
- {
- SDL_Palette *palette;
- if (!SDL_SurfaceValid(surface)) {
- SDL_InvalidParamError("surface");
- return NULL;
- }
- if (!SDL_ISPIXELFORMAT_INDEXED(surface->format)) {
- SDL_SetError("The surface is not indexed format");
- return NULL;
- }
- palette = SDL_CreatePalette((1 << SDL_BITSPERPIXEL(surface->format)));
- if (!palette) {
- return NULL;
- }
- if (palette->ncolors == 2) {
- /* Create a black and white bitmap palette */
- palette->colors[0].r = 0xFF;
- palette->colors[0].g = 0xFF;
- palette->colors[0].b = 0xFF;
- palette->colors[1].r = 0x00;
- palette->colors[1].g = 0x00;
- palette->colors[1].b = 0x00;
- }
- if (SDL_SetSurfacePalette(surface, palette) < 0) {
- SDL_DestroyPalette(palette);
- return NULL;
- }
- /* The surface has retained the palette, we can remove the reference here */
- SDL_assert(palette->refcount == 2);
- SDL_DestroyPalette(palette);
- return palette;
- }
- int SDL_SetSurfacePalette(SDL_Surface *surface, SDL_Palette *palette)
- {
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- if (palette && palette->ncolors > (1 << SDL_BITSPERPIXEL(surface->format))) {
- return SDL_SetError("SDL_SetSurfacePalette() passed a palette that doesn't match the surface format");
- }
- if (palette != surface->internal->palette) {
- if (surface->internal->palette) {
- SDL_DestroyPalette(surface->internal->palette);
- }
- surface->internal->palette = palette;
- if (surface->internal->palette) {
- ++surface->internal->palette->refcount;
- }
- }
- SDL_InvalidateMap(&surface->internal->map);
- return 0;
- }
- SDL_Palette *SDL_GetSurfacePalette(SDL_Surface *surface)
- {
- if (!SDL_SurfaceValid(surface)) {
- return NULL;
- }
- return surface->internal->palette;
- }
- int SDL_SetSurfaceRLE(SDL_Surface *surface, SDL_bool enabled)
- {
- int flags;
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- flags = surface->internal->map.info.flags;
- if (enabled) {
- surface->internal->map.info.flags |= SDL_COPY_RLE_DESIRED;
- } else {
- surface->internal->map.info.flags &= ~SDL_COPY_RLE_DESIRED;
- }
- if (surface->internal->map.info.flags != flags) {
- SDL_InvalidateMap(&surface->internal->map);
- }
- SDL_UpdateSurfaceLockFlag(surface);
- return 0;
- }
- SDL_bool SDL_SurfaceHasRLE(SDL_Surface *surface)
- {
- if (!SDL_SurfaceValid(surface)) {
- return SDL_FALSE;
- }
- if (!(surface->internal->map.info.flags & SDL_COPY_RLE_DESIRED)) {
- return SDL_FALSE;
- }
- return SDL_TRUE;
- }
- int SDL_SetSurfaceColorKey(SDL_Surface *surface, SDL_bool enabled, Uint32 key)
- {
- int flags;
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- if (surface->internal->palette && key >= ((Uint32)surface->internal->palette->ncolors)) {
- return SDL_InvalidParamError("key");
- }
- flags = surface->internal->map.info.flags;
- if (enabled) {
- surface->internal->map.info.flags |= SDL_COPY_COLORKEY;
- surface->internal->map.info.colorkey = key;
- } else {
- surface->internal->map.info.flags &= ~SDL_COPY_COLORKEY;
- }
- if (surface->internal->map.info.flags != flags) {
- SDL_InvalidateMap(&surface->internal->map);
- }
- return 0;
- }
- SDL_bool SDL_SurfaceHasColorKey(SDL_Surface *surface)
- {
- if (!SDL_SurfaceValid(surface)) {
- return SDL_FALSE;
- }
- if (!(surface->internal->map.info.flags & SDL_COPY_COLORKEY)) {
- return SDL_FALSE;
- }
- return SDL_TRUE;
- }
- int SDL_GetSurfaceColorKey(SDL_Surface *surface, Uint32 *key)
- {
- if (key) {
- *key = 0;
- }
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- if (!(surface->internal->map.info.flags & SDL_COPY_COLORKEY)) {
- return SDL_SetError("Surface doesn't have a colorkey");
- }
- if (key) {
- *key = surface->internal->map.info.colorkey;
- }
- return 0;
- }
- /* This is a fairly slow function to switch from colorkey to alpha
- NB: it doesn't handle bpp 1 or 3, because they have no alpha channel */
- static void SDL_ConvertColorkeyToAlpha(SDL_Surface *surface, SDL_bool ignore_alpha)
- {
- int x, y, bpp;
- if (!SDL_SurfaceValid(surface)) {
- return;
- }
- if (!(surface->internal->map.info.flags & SDL_COPY_COLORKEY) ||
- !SDL_ISPIXELFORMAT_ALPHA(surface->format)) {
- return;
- }
- bpp = SDL_BYTESPERPIXEL(surface->format);
- SDL_LockSurface(surface);
- if (bpp == 2) {
- Uint16 *row, *spot;
- Uint16 ckey = (Uint16)surface->internal->map.info.colorkey;
- Uint16 mask = (Uint16)(~surface->internal->format->Amask);
- /* Ignore, or not, alpha in colorkey comparison */
- if (ignore_alpha) {
- ckey &= mask;
- row = (Uint16 *)surface->pixels;
- for (y = surface->h; y--;) {
- spot = row;
- for (x = surface->w; x--;) {
- if ((*spot & mask) == ckey) {
- *spot &= mask;
- }
- ++spot;
- }
- row += surface->pitch / 2;
- }
- } else {
- row = (Uint16 *)surface->pixels;
- for (y = surface->h; y--;) {
- spot = row;
- for (x = surface->w; x--;) {
- if (*spot == ckey) {
- *spot &= mask;
- }
- ++spot;
- }
- row += surface->pitch / 2;
- }
- }
- } else if (bpp == 4) {
- Uint32 *row, *spot;
- Uint32 ckey = surface->internal->map.info.colorkey;
- Uint32 mask = ~surface->internal->format->Amask;
- /* Ignore, or not, alpha in colorkey comparison */
- if (ignore_alpha) {
- ckey &= mask;
- row = (Uint32 *)surface->pixels;
- for (y = surface->h; y--;) {
- spot = row;
- for (x = surface->w; x--;) {
- if ((*spot & mask) == ckey) {
- *spot &= mask;
- }
- ++spot;
- }
- row += surface->pitch / 4;
- }
- } else {
- row = (Uint32 *)surface->pixels;
- for (y = surface->h; y--;) {
- spot = row;
- for (x = surface->w; x--;) {
- if (*spot == ckey) {
- *spot &= mask;
- }
- ++spot;
- }
- row += surface->pitch / 4;
- }
- }
- }
- SDL_UnlockSurface(surface);
- SDL_SetSurfaceColorKey(surface, 0, 0);
- SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_BLEND);
- }
- int SDL_SetSurfaceColorMod(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b)
- {
- int flags;
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- surface->internal->map.info.r = r;
- surface->internal->map.info.g = g;
- surface->internal->map.info.b = b;
- flags = surface->internal->map.info.flags;
- if (r != 0xFF || g != 0xFF || b != 0xFF) {
- surface->internal->map.info.flags |= SDL_COPY_MODULATE_COLOR;
- } else {
- surface->internal->map.info.flags &= ~SDL_COPY_MODULATE_COLOR;
- }
- if (surface->internal->map.info.flags != flags) {
- SDL_InvalidateMap(&surface->internal->map);
- }
- return 0;
- }
- int SDL_GetSurfaceColorMod(SDL_Surface *surface, Uint8 *r, Uint8 *g, Uint8 *b)
- {
- if (!SDL_SurfaceValid(surface)) {
- if (r) {
- *r = 255;
- }
- if (g) {
- *g = 255;
- }
- if (b) {
- *b = 255;
- }
- return SDL_InvalidParamError("surface");
- }
- if (r) {
- *r = surface->internal->map.info.r;
- }
- if (g) {
- *g = surface->internal->map.info.g;
- }
- if (b) {
- *b = surface->internal->map.info.b;
- }
- return 0;
- }
- int SDL_SetSurfaceAlphaMod(SDL_Surface *surface, Uint8 alpha)
- {
- int flags;
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- surface->internal->map.info.a = alpha;
- flags = surface->internal->map.info.flags;
- if (alpha != 0xFF) {
- surface->internal->map.info.flags |= SDL_COPY_MODULATE_ALPHA;
- } else {
- surface->internal->map.info.flags &= ~SDL_COPY_MODULATE_ALPHA;
- }
- if (surface->internal->map.info.flags != flags) {
- SDL_InvalidateMap(&surface->internal->map);
- }
- return 0;
- }
- int SDL_GetSurfaceAlphaMod(SDL_Surface *surface, Uint8 *alpha)
- {
- if (!SDL_SurfaceValid(surface)) {
- if (alpha) {
- *alpha = 255;
- }
- return SDL_InvalidParamError("surface");
- }
- if (alpha) {
- *alpha = surface->internal->map.info.a;
- }
- return 0;
- }
- int SDL_SetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode blendMode)
- {
- int flags, status;
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- if (blendMode == SDL_BLENDMODE_INVALID) {
- return SDL_InvalidParamError("blendMode");
- }
- status = 0;
- flags = surface->internal->map.info.flags;
- surface->internal->map.info.flags &= ~(SDL_COPY_BLEND | SDL_COPY_BLEND_PREMULTIPLIED | SDL_COPY_ADD | SDL_COPY_ADD_PREMULTIPLIED | SDL_COPY_MOD | SDL_COPY_MUL);
- switch (blendMode) {
- case SDL_BLENDMODE_NONE:
- break;
- case SDL_BLENDMODE_BLEND:
- surface->internal->map.info.flags |= SDL_COPY_BLEND;
- break;
- case SDL_BLENDMODE_BLEND_PREMULTIPLIED:
- surface->internal->map.info.flags |= SDL_COPY_BLEND_PREMULTIPLIED;
- break;
- case SDL_BLENDMODE_ADD:
- surface->internal->map.info.flags |= SDL_COPY_ADD;
- break;
- case SDL_BLENDMODE_ADD_PREMULTIPLIED:
- surface->internal->map.info.flags |= SDL_COPY_ADD_PREMULTIPLIED;
- break;
- case SDL_BLENDMODE_MOD:
- surface->internal->map.info.flags |= SDL_COPY_MOD;
- break;
- case SDL_BLENDMODE_MUL:
- surface->internal->map.info.flags |= SDL_COPY_MUL;
- break;
- default:
- status = SDL_Unsupported();
- break;
- }
- if (surface->internal->map.info.flags != flags) {
- SDL_InvalidateMap(&surface->internal->map);
- }
- return status;
- }
- int SDL_GetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode *blendMode)
- {
- if (blendMode) {
- *blendMode = SDL_BLENDMODE_INVALID;
- }
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- if (!blendMode) {
- return 0;
- }
- switch (surface->internal->map.info.flags & (SDL_COPY_BLEND | SDL_COPY_BLEND_PREMULTIPLIED | SDL_COPY_ADD | SDL_COPY_ADD_PREMULTIPLIED | SDL_COPY_MOD | SDL_COPY_MUL)) {
- case SDL_COPY_BLEND:
- *blendMode = SDL_BLENDMODE_BLEND;
- break;
- case SDL_COPY_BLEND_PREMULTIPLIED:
- *blendMode = SDL_BLENDMODE_BLEND_PREMULTIPLIED;
- break;
- case SDL_COPY_ADD:
- *blendMode = SDL_BLENDMODE_ADD;
- break;
- case SDL_COPY_ADD_PREMULTIPLIED:
- *blendMode = SDL_BLENDMODE_ADD_PREMULTIPLIED;
- break;
- case SDL_COPY_MOD:
- *blendMode = SDL_BLENDMODE_MOD;
- break;
- case SDL_COPY_MUL:
- *blendMode = SDL_BLENDMODE_MUL;
- break;
- default:
- *blendMode = SDL_BLENDMODE_NONE;
- break;
- }
- return 0;
- }
- SDL_bool SDL_SetSurfaceClipRect(SDL_Surface *surface, const SDL_Rect *rect)
- {
- SDL_Rect full_rect;
- /* Don't do anything if there's no surface to act on */
- if (!SDL_SurfaceValid(surface)) {
- return SDL_FALSE;
- }
- /* Set up the full surface rectangle */
- full_rect.x = 0;
- full_rect.y = 0;
- full_rect.w = surface->w;
- full_rect.h = surface->h;
- /* Set the clipping rectangle */
- if (!rect) {
- surface->internal->clip_rect = full_rect;
- return SDL_TRUE;
- }
- return SDL_GetRectIntersection(rect, &full_rect, &surface->internal->clip_rect);
- }
- int SDL_GetSurfaceClipRect(SDL_Surface *surface, SDL_Rect *rect)
- {
- if (!SDL_SurfaceValid(surface)) {
- if (rect) {
- SDL_zerop(rect);
- }
- return SDL_InvalidParamError("surface");
- }
- if (!rect) {
- return SDL_InvalidParamError("rect");
- }
- *rect = surface->internal->clip_rect;
- return 0;
- }
- /*
- * Set up a blit between two surfaces -- split into three parts:
- * The upper part, SDL_BlitSurface(), performs clipping and rectangle
- * verification. The lower part is a pointer to a low level
- * accelerated blitting function.
- *
- * These parts are separated out and each used internally by this
- * library in the optimum places. They are exported so that if
- * you know exactly what you are doing, you can optimize your code
- * by calling the one(s) you need.
- */
- int SDL_BlitSurfaceUnchecked(SDL_Surface *src, const SDL_Rect *srcrect,
- SDL_Surface *dst, const SDL_Rect *dstrect)
- {
- /* Check to make sure the blit mapping is valid */
- if ((src->internal->map.dst != dst) ||
- (dst->internal->palette &&
- src->internal->map.dst_palette_version != dst->internal->palette->version) ||
- (src->internal->palette &&
- src->internal->map.src_palette_version != src->internal->palette->version)) {
- if (SDL_MapSurface(src, dst) < 0) {
- return -1;
- }
- /* just here for debugging */
- /* printf */
- /* ("src = 0x%08X src->flags = %08X src->internal->map.info.flags = %08x\ndst = 0x%08X dst->flags = %08X dst->internal->map.info.flags = %08X\nsrc->internal->map.blit = 0x%08x\n", */
- /* src, dst->flags, src->internal->map.info.flags, dst, dst->flags, */
- /* dst->internal->map.info.flags, src->internal->map.blit); */
- }
- return src->internal->map.blit(src, srcrect, dst, dstrect);
- }
- int SDL_BlitSurface(SDL_Surface *src, const SDL_Rect *srcrect,
- SDL_Surface *dst, SDL_Rect *dstrect)
- {
- SDL_Rect r_src, r_dst;
- /* Make sure the surfaces aren't locked */
- if (!SDL_SurfaceValid(src)) {
- return SDL_InvalidParamError("src");
- } else if (!SDL_SurfaceValid(dst)) {
- return SDL_InvalidParamError("dst");
- } else if ((src->flags & SDL_SURFACE_LOCKED) || (dst->flags & SDL_SURFACE_LOCKED)) {
- return SDL_SetError("Surfaces must not be locked during blit");
- }
- /* Full src surface */
- r_src.x = 0;
- r_src.y = 0;
- r_src.w = src->w;
- r_src.h = src->h;
- if (dstrect) {
- r_dst.x = dstrect->x;
- r_dst.y = dstrect->y;
- } else {
- r_dst.x = 0;
- r_dst.y = 0;
- }
- /* clip the source rectangle to the source surface */
- if (srcrect) {
- SDL_Rect tmp;
- if (SDL_GetRectIntersection(srcrect, &r_src, &tmp) == SDL_FALSE) {
- goto end;
- }
- /* Shift dstrect, if srcrect origin has changed */
- r_dst.x += tmp.x - srcrect->x;
- r_dst.y += tmp.y - srcrect->y;
- /* Update srcrect */
- r_src = tmp;
- }
- /* There're no dstrect.w/h parameters. It's the same as srcrect */
- r_dst.w = r_src.w;
- r_dst.h = r_src.h;
- /* clip the destination rectangle against the clip rectangle */
- {
- SDL_Rect tmp;
- if (SDL_GetRectIntersection(&r_dst, &dst->internal->clip_rect, &tmp) == SDL_FALSE) {
- goto end;
- }
- /* Shift srcrect, if dstrect has changed */
- r_src.x += tmp.x - r_dst.x;
- r_src.y += tmp.y - r_dst.y;
- r_src.w = tmp.w;
- r_src.h = tmp.h;
- /* Update dstrect */
- r_dst = tmp;
- }
- /* Switch back to a fast blit if we were previously stretching */
- if (src->internal->map.info.flags & SDL_COPY_NEAREST) {
- src->internal->map.info.flags &= ~SDL_COPY_NEAREST;
- SDL_InvalidateMap(&src->internal->map);
- }
- if (r_dst.w > 0 && r_dst.h > 0) {
- if (dstrect) { /* update output parameter */
- *dstrect = r_dst;
- }
- return SDL_BlitSurfaceUnchecked(src, &r_src, dst, &r_dst);
- }
- end:
- if (dstrect) { /* update output parameter */
- dstrect->w = dstrect->h = 0;
- }
- return 0;
- }
- int SDL_BlitSurfaceScaled(SDL_Surface *src, const SDL_Rect *srcrect,
- SDL_Surface *dst, SDL_Rect *dstrect,
- SDL_ScaleMode scaleMode)
- {
- SDL_Rect *clip_rect;
- double src_x0, src_y0, src_x1, src_y1;
- double dst_x0, dst_y0, dst_x1, dst_y1;
- SDL_Rect final_src, final_dst;
- double scaling_w, scaling_h;
- int src_w, src_h;
- int dst_w, dst_h;
- /* Make sure the surfaces aren't locked */
- if (!SDL_SurfaceValid(src)) {
- return SDL_InvalidParamError("src");
- } else if (!SDL_SurfaceValid(dst)) {
- return SDL_InvalidParamError("dst");
- } else if ((src->flags & SDL_SURFACE_LOCKED) || (dst->flags & SDL_SURFACE_LOCKED)) {
- return SDL_SetError("Surfaces must not be locked during blit");
- }
- if (!srcrect) {
- src_w = src->w;
- src_h = src->h;
- } else {
- src_w = srcrect->w;
- src_h = srcrect->h;
- }
- if (!dstrect) {
- dst_w = dst->w;
- dst_h = dst->h;
- } else {
- dst_w = dstrect->w;
- dst_h = dstrect->h;
- }
- if (dst_w == src_w && dst_h == src_h) {
- /* No scaling, defer to regular blit */
- return SDL_BlitSurface(src, srcrect, dst, dstrect);
- }
- scaling_w = (double)dst_w / src_w;
- scaling_h = (double)dst_h / src_h;
- if (!dstrect) {
- dst_x0 = 0;
- dst_y0 = 0;
- dst_x1 = dst_w;
- dst_y1 = dst_h;
- } else {
- dst_x0 = dstrect->x;
- dst_y0 = dstrect->y;
- dst_x1 = dst_x0 + dst_w;
- dst_y1 = dst_y0 + dst_h;
- }
- if (!srcrect) {
- src_x0 = 0;
- src_y0 = 0;
- src_x1 = src_w;
- src_y1 = src_h;
- } else {
- src_x0 = srcrect->x;
- src_y0 = srcrect->y;
- src_x1 = src_x0 + src_w;
- src_y1 = src_y0 + src_h;
- /* Clip source rectangle to the source surface */
- if (src_x0 < 0) {
- dst_x0 -= src_x0 * scaling_w;
- src_x0 = 0;
- }
- if (src_x1 > src->w) {
- dst_x1 -= (src_x1 - src->w) * scaling_w;
- src_x1 = src->w;
- }
- if (src_y0 < 0) {
- dst_y0 -= src_y0 * scaling_h;
- src_y0 = 0;
- }
- if (src_y1 > src->h) {
- dst_y1 -= (src_y1 - src->h) * scaling_h;
- src_y1 = src->h;
- }
- }
- /* Clip destination rectangle to the clip rectangle */
- clip_rect = &dst->internal->clip_rect;
- /* Translate to clip space for easier calculations */
- dst_x0 -= clip_rect->x;
- dst_x1 -= clip_rect->x;
- dst_y0 -= clip_rect->y;
- dst_y1 -= clip_rect->y;
- if (dst_x0 < 0) {
- src_x0 -= dst_x0 / scaling_w;
- dst_x0 = 0;
- }
- if (dst_x1 > clip_rect->w) {
- src_x1 -= (dst_x1 - clip_rect->w) / scaling_w;
- dst_x1 = clip_rect->w;
- }
- if (dst_y0 < 0) {
- src_y0 -= dst_y0 / scaling_h;
- dst_y0 = 0;
- }
- if (dst_y1 > clip_rect->h) {
- src_y1 -= (dst_y1 - clip_rect->h) / scaling_h;
- dst_y1 = clip_rect->h;
- }
- /* Translate back to surface coordinates */
- dst_x0 += clip_rect->x;
- dst_x1 += clip_rect->x;
- dst_y0 += clip_rect->y;
- dst_y1 += clip_rect->y;
- final_src.x = (int)SDL_round(src_x0);
- final_src.y = (int)SDL_round(src_y0);
- final_src.w = (int)SDL_round(src_x1 - src_x0);
- final_src.h = (int)SDL_round(src_y1 - src_y0);
- final_dst.x = (int)SDL_round(dst_x0);
- final_dst.y = (int)SDL_round(dst_y0);
- final_dst.w = (int)SDL_round(dst_x1 - dst_x0);
- final_dst.h = (int)SDL_round(dst_y1 - dst_y0);
- /* Clip again */
- {
- SDL_Rect tmp;
- tmp.x = 0;
- tmp.y = 0;
- tmp.w = src->w;
- tmp.h = src->h;
- SDL_GetRectIntersection(&tmp, &final_src, &final_src);
- }
- /* Clip again */
- SDL_GetRectIntersection(clip_rect, &final_dst, &final_dst);
- if (dstrect) {
- *dstrect = final_dst;
- }
- if (final_dst.w == 0 || final_dst.h == 0 ||
- final_src.w <= 0 || final_src.h <= 0) {
- /* No-op. */
- return 0;
- }
- return SDL_BlitSurfaceUncheckedScaled(src, &final_src, dst, &final_dst, scaleMode);
- }
- /**
- * This is a semi-private blit function and it performs low-level surface
- * scaled blitting only.
- */
- int SDL_BlitSurfaceUncheckedScaled(SDL_Surface *src, const SDL_Rect *srcrect,
- SDL_Surface *dst, const SDL_Rect *dstrect,
- SDL_ScaleMode scaleMode)
- {
- static const Uint32 complex_copy_flags = (SDL_COPY_MODULATE_COLOR | SDL_COPY_MODULATE_ALPHA |
- SDL_COPY_BLEND | SDL_COPY_BLEND_PREMULTIPLIED | SDL_COPY_ADD | SDL_COPY_ADD_PREMULTIPLIED | SDL_COPY_MOD | SDL_COPY_MUL |
- SDL_COPY_COLORKEY);
- if (scaleMode != SDL_SCALEMODE_NEAREST && scaleMode != SDL_SCALEMODE_LINEAR && scaleMode != SDL_SCALEMODE_BEST) {
- return SDL_InvalidParamError("scaleMode");
- }
- if (scaleMode != SDL_SCALEMODE_NEAREST) {
- scaleMode = SDL_SCALEMODE_LINEAR;
- }
- if (srcrect->w > SDL_MAX_UINT16 || srcrect->h > SDL_MAX_UINT16 ||
- dstrect->w > SDL_MAX_UINT16 || dstrect->h > SDL_MAX_UINT16) {
- return SDL_SetError("Size too large for scaling");
- }
- if (!(src->internal->map.info.flags & SDL_COPY_NEAREST)) {
- src->internal->map.info.flags |= SDL_COPY_NEAREST;
- SDL_InvalidateMap(&src->internal->map);
- }
- if (scaleMode == SDL_SCALEMODE_NEAREST) {
- if (!(src->internal->map.info.flags & complex_copy_flags) &&
- src->format == dst->format &&
- !SDL_ISPIXELFORMAT_INDEXED(src->format)) {
- return SDL_SoftStretch(src, srcrect, dst, dstrect, SDL_SCALEMODE_NEAREST);
- } else {
- return SDL_BlitSurfaceUnchecked(src, srcrect, dst, dstrect);
- }
- } else {
- if (!(src->internal->map.info.flags & complex_copy_flags) &&
- src->format == dst->format &&
- !SDL_ISPIXELFORMAT_INDEXED(src->format) &&
- SDL_BYTESPERPIXEL(src->format) == 4 &&
- src->format != SDL_PIXELFORMAT_ARGB2101010) {
- /* fast path */
- return SDL_SoftStretch(src, srcrect, dst, dstrect, SDL_SCALEMODE_LINEAR);
- } else {
- /* Use intermediate surface(s) */
- SDL_Surface *tmp1 = NULL;
- int ret;
- SDL_Rect srcrect2;
- int is_complex_copy_flags = (src->internal->map.info.flags & complex_copy_flags);
- Uint8 r, g, b;
- Uint8 alpha;
- SDL_BlendMode blendMode;
- /* Save source infos */
- SDL_GetSurfaceColorMod(src, &r, &g, &b);
- SDL_GetSurfaceAlphaMod(src, &alpha);
- SDL_GetSurfaceBlendMode(src, &blendMode);
- srcrect2.x = srcrect->x;
- srcrect2.y = srcrect->y;
- srcrect2.w = srcrect->w;
- srcrect2.h = srcrect->h;
- /* Change source format if not appropriate for scaling */
- if (SDL_BYTESPERPIXEL(src->format) != 4 || src->format == SDL_PIXELFORMAT_ARGB2101010) {
- SDL_Rect tmprect;
- SDL_PixelFormat fmt;
- tmprect.x = 0;
- tmprect.y = 0;
- tmprect.w = src->w;
- tmprect.h = src->h;
- if (SDL_BYTESPERPIXEL(dst->format) == 4 && dst->format != SDL_PIXELFORMAT_ARGB2101010) {
- fmt = dst->format;
- } else {
- fmt = SDL_PIXELFORMAT_ARGB8888;
- }
- tmp1 = SDL_CreateSurface(src->w, src->h, fmt);
- SDL_BlitSurfaceUnchecked(src, srcrect, tmp1, &tmprect);
- srcrect2.x = 0;
- srcrect2.y = 0;
- SDL_SetSurfaceColorMod(tmp1, r, g, b);
- SDL_SetSurfaceAlphaMod(tmp1, alpha);
- SDL_SetSurfaceBlendMode(tmp1, blendMode);
- src = tmp1;
- }
- /* Intermediate scaling */
- if (is_complex_copy_flags || src->format != dst->format) {
- SDL_Rect tmprect;
- SDL_Surface *tmp2 = SDL_CreateSurface(dstrect->w, dstrect->h, src->format);
- SDL_SoftStretch(src, &srcrect2, tmp2, NULL, SDL_SCALEMODE_LINEAR);
- SDL_SetSurfaceColorMod(tmp2, r, g, b);
- SDL_SetSurfaceAlphaMod(tmp2, alpha);
- SDL_SetSurfaceBlendMode(tmp2, blendMode);
- tmprect.x = 0;
- tmprect.y = 0;
- tmprect.w = dstrect->w;
- tmprect.h = dstrect->h;
- ret = SDL_BlitSurfaceUnchecked(tmp2, &tmprect, dst, dstrect);
- SDL_DestroySurface(tmp2);
- } else {
- ret = SDL_SoftStretch(src, &srcrect2, dst, dstrect, SDL_SCALEMODE_LINEAR);
- }
- SDL_DestroySurface(tmp1);
- return ret;
- }
- }
- }
- /*
- * Lock a surface to directly access the pixels
- */
- int SDL_LockSurface(SDL_Surface *surface)
- {
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- if (!surface->internal->locked) {
- #if SDL_HAVE_RLE
- /* Perform the lock */
- if (surface->internal->flags & SDL_INTERNAL_SURFACE_RLEACCEL) {
- SDL_UnRLESurface(surface, SDL_TRUE);
- surface->internal->flags |= SDL_INTERNAL_SURFACE_RLEACCEL; /* save accel'd state */
- }
- #endif
- }
- /* Increment the surface lock count, for recursive locks */
- ++surface->internal->locked;
- surface->flags |= SDL_SURFACE_LOCKED;
- /* Ready to go.. */
- return 0;
- }
- /*
- * Unlock a previously locked surface
- */
- void SDL_UnlockSurface(SDL_Surface *surface)
- {
- if (!SDL_SurfaceValid(surface)) {
- return;
- }
- /* Only perform an unlock if we are locked */
- if (!surface->internal->locked || (--surface->internal->locked > 0)) {
- return;
- }
- #if SDL_HAVE_RLE
- /* Update RLE encoded surface with new data */
- if (surface->internal->flags & SDL_INTERNAL_SURFACE_RLEACCEL) {
- surface->internal->flags &= ~SDL_INTERNAL_SURFACE_RLEACCEL; /* stop lying */
- SDL_RLESurface(surface);
- }
- #endif
- surface->flags &= ~SDL_SURFACE_LOCKED;
- }
- static int SDL_FlipSurfaceHorizontal(SDL_Surface *surface)
- {
- SDL_bool isstack;
- Uint8 *row, *a, *b, *tmp;
- int i, j, bpp;
- if (SDL_BITSPERPIXEL(surface->format) < 8) {
- /* We could implement this if needed, but we'd have to flip sets of bits within a byte */
- return SDL_Unsupported();
- }
- if (surface->h <= 0) {
- return 0;
- }
- if (surface->w <= 1) {
- return 0;
- }
- bpp = SDL_BYTESPERPIXEL(surface->format);
- row = (Uint8 *)surface->pixels;
- tmp = SDL_small_alloc(Uint8, surface->pitch, &isstack);
- for (i = surface->h; i--; ) {
- a = row;
- b = a + (surface->w - 1) * bpp;
- for (j = surface->w / 2; j--; ) {
- SDL_memcpy(tmp, a, bpp);
- SDL_memcpy(a, b, bpp);
- SDL_memcpy(b, tmp, bpp);
- a += bpp;
- b -= bpp;
- }
- row += surface->pitch;
- }
- SDL_small_free(tmp, isstack);
- return 0;
- }
- static int SDL_FlipSurfaceVertical(SDL_Surface *surface)
- {
- SDL_bool isstack;
- Uint8 *a, *b, *tmp;
- int i;
- if (surface->h <= 1) {
- return 0;
- }
- a = (Uint8 *)surface->pixels;
- b = a + (surface->h - 1) * surface->pitch;
- tmp = SDL_small_alloc(Uint8, surface->pitch, &isstack);
- for (i = surface->h / 2; i--; ) {
- SDL_memcpy(tmp, a, surface->pitch);
- SDL_memcpy(a, b, surface->pitch);
- SDL_memcpy(b, tmp, surface->pitch);
- a += surface->pitch;
- b -= surface->pitch;
- }
- SDL_small_free(tmp, isstack);
- return 0;
- }
- int SDL_FlipSurface(SDL_Surface *surface, SDL_FlipMode flip)
- {
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- if (!surface->pixels) {
- return 0;
- }
- switch (flip) {
- case SDL_FLIP_HORIZONTAL:
- return SDL_FlipSurfaceHorizontal(surface);
- case SDL_FLIP_VERTICAL:
- return SDL_FlipSurfaceVertical(surface);
- default:
- return SDL_InvalidParamError("flip");
- }
- }
- SDL_Surface *SDL_ConvertSurfaceAndColorspace(SDL_Surface *surface, SDL_PixelFormat format, SDL_Palette *palette, SDL_Colorspace colorspace, SDL_PropertiesID props)
- {
- SDL_Palette *temp_palette = NULL;
- SDL_Surface *convert = NULL;
- SDL_Colorspace src_colorspace;
- SDL_PropertiesID src_properties;
- Uint32 copy_flags;
- SDL_Color copy_color;
- SDL_Rect bounds;
- int ret;
- SDL_bool palette_ck_transform = SDL_FALSE;
- Uint8 palette_ck_value = 0;
- Uint8 *palette_saved_alpha = NULL;
- int palette_saved_alpha_ncolors = 0;
- if (!SDL_SurfaceValid(surface)) {
- SDL_InvalidParamError("surface");
- goto error;
- }
- if (format == SDL_PIXELFORMAT_UNKNOWN) {
- SDL_InvalidParamError("format");
- goto error;
- }
- /* Check for empty destination palette! (results in empty image) */
- if (palette) {
- int i;
- for (i = 0; i < palette->ncolors; ++i) {
- if ((palette->colors[i].r != 0xFF) || (palette->colors[i].g != 0xFF) || (palette->colors[i].b != 0xFF)) {
- break;
- }
- }
- if (i == palette->ncolors) {
- SDL_SetError("Empty destination palette");
- goto error;
- }
- } else if (SDL_ISPIXELFORMAT_INDEXED(format)) {
- // Create a dither palette for conversion
- temp_palette = SDL_CreatePalette(1 << SDL_BITSPERPIXEL(format));
- if (temp_palette) {
- SDL_DitherPalette(temp_palette);
- palette = temp_palette;
- }
- }
- src_colorspace = SDL_GetSurfaceColorspace(surface);
- src_properties = surface->internal->props;
- /* Create a new surface with the desired format */
- convert = SDL_CreateSurface(surface->w, surface->h, format);
- if (!convert) {
- goto error;
- }
- if (SDL_ISPIXELFORMAT_INDEXED(format)) {
- SDL_SetSurfacePalette(convert, palette);
- }
- if (colorspace == SDL_COLORSPACE_UNKNOWN) {
- colorspace = src_colorspace;
- }
- SDL_SetSurfaceColorspace(convert, colorspace);
- if (SDL_ISPIXELFORMAT_FOURCC(format) || SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
- if (SDL_ConvertPixelsAndColorspace(surface->w, surface->h, surface->format, src_colorspace, src_properties, surface->pixels, surface->pitch, convert->format, colorspace, props, convert->pixels, convert->pitch) < 0) {
- goto error;
- }
- /* Save the original copy flags */
- copy_flags = surface->internal->map.info.flags;
- goto end;
- }
- /* Save the original copy flags */
- copy_flags = surface->internal->map.info.flags;
- copy_color.r = surface->internal->map.info.r;
- copy_color.g = surface->internal->map.info.g;
- copy_color.b = surface->internal->map.info.b;
- copy_color.a = surface->internal->map.info.a;
- surface->internal->map.info.r = 0xFF;
- surface->internal->map.info.g = 0xFF;
- surface->internal->map.info.b = 0xFF;
- surface->internal->map.info.a = 0xFF;
- surface->internal->map.info.flags = (copy_flags & (SDL_COPY_RLE_COLORKEY | SDL_COPY_RLE_ALPHAKEY));
- SDL_InvalidateMap(&surface->internal->map);
- /* Copy over the image data */
- bounds.x = 0;
- bounds.y = 0;
- bounds.w = surface->w;
- bounds.h = surface->h;
- /* Source surface has a palette with no real alpha (0 or OPAQUE).
- * Destination format has alpha.
- * -> set alpha channel to be opaque */
- if (surface->internal->palette && SDL_ISPIXELFORMAT_ALPHA(format)) {
- SDL_bool set_opaque = SDL_FALSE;
- SDL_bool is_opaque, has_alpha_channel;
- SDL_DetectPalette(surface->internal->palette, &is_opaque, &has_alpha_channel);
- if (is_opaque) {
- if (!has_alpha_channel) {
- set_opaque = SDL_TRUE;
- }
- }
- /* Set opaque and backup palette alpha values */
- if (set_opaque) {
- int i;
- palette_saved_alpha_ncolors = surface->internal->palette->ncolors;
- if (palette_saved_alpha_ncolors > 0) {
- palette_saved_alpha = SDL_stack_alloc(Uint8, palette_saved_alpha_ncolors);
- for (i = 0; i < palette_saved_alpha_ncolors; i++) {
- palette_saved_alpha[i] = surface->internal->palette->colors[i].a;
- surface->internal->palette->colors[i].a = SDL_ALPHA_OPAQUE;
- }
- }
- }
- }
- /* Transform colorkey to alpha. for cases where source palette has duplicate values, and colorkey is one of them */
- if (copy_flags & SDL_COPY_COLORKEY) {
- if (surface->internal->palette && !palette) {
- palette_ck_transform = SDL_TRUE;
- palette_ck_value = surface->internal->palette->colors[surface->internal->map.info.colorkey].a;
- surface->internal->palette->colors[surface->internal->map.info.colorkey].a = SDL_ALPHA_TRANSPARENT;
- }
- }
- ret = SDL_BlitSurfaceUnchecked(surface, &bounds, convert, &bounds);
- /* Restore colorkey alpha value */
- if (palette_ck_transform) {
- surface->internal->palette->colors[surface->internal->map.info.colorkey].a = palette_ck_value;
- }
- /* Restore palette alpha values */
- if (palette_saved_alpha) {
- int i;
- for (i = 0; i < palette_saved_alpha_ncolors; i++) {
- surface->internal->palette->colors[i].a = palette_saved_alpha[i];
- }
- SDL_stack_free(palette_saved_alpha);
- }
- /* Clean up the original surface, and update converted surface */
- convert->internal->map.info.r = copy_color.r;
- convert->internal->map.info.g = copy_color.g;
- convert->internal->map.info.b = copy_color.b;
- convert->internal->map.info.a = copy_color.a;
- convert->internal->map.info.flags =
- (copy_flags &
- ~(SDL_COPY_COLORKEY | SDL_COPY_BLEND | SDL_COPY_RLE_DESIRED | SDL_COPY_RLE_COLORKEY |
- SDL_COPY_RLE_ALPHAKEY));
- surface->internal->map.info.r = copy_color.r;
- surface->internal->map.info.g = copy_color.g;
- surface->internal->map.info.b = copy_color.b;
- surface->internal->map.info.a = copy_color.a;
- surface->internal->map.info.flags = copy_flags;
- SDL_InvalidateMap(&surface->internal->map);
- /* SDL_BlitSurfaceUnchecked failed, and so the conversion */
- if (ret < 0) {
- goto error;
- }
- if (copy_flags & SDL_COPY_COLORKEY) {
- SDL_bool set_colorkey_by_color = SDL_FALSE;
- SDL_bool convert_colorkey = SDL_TRUE;
- if (surface->internal->palette) {
- if (palette &&
- surface->internal->palette->ncolors <= palette->ncolors &&
- (SDL_memcmp(surface->internal->palette->colors, palette->colors,
- surface->internal->palette->ncolors * sizeof(SDL_Color)) == 0)) {
- /* The palette is identical, just set the same colorkey */
- SDL_SetSurfaceColorKey(convert, 1, surface->internal->map.info.colorkey);
- } else if (!palette) {
- if (SDL_ISPIXELFORMAT_ALPHA(format)) {
- /* No need to add the colorkey, transparency is in the alpha channel*/
- } else {
- /* Only set the colorkey information */
- set_colorkey_by_color = SDL_TRUE;
- convert_colorkey = SDL_FALSE;
- }
- } else {
- set_colorkey_by_color = SDL_TRUE;
- }
- } else {
- set_colorkey_by_color = SDL_TRUE;
- }
- if (set_colorkey_by_color) {
- SDL_Surface *tmp;
- SDL_Surface *tmp2;
- int converted_colorkey = 0;
- /* Create a dummy surface to get the colorkey converted */
- tmp = SDL_CreateSurface(1, 1, surface->format);
- if (!tmp) {
- goto error;
- }
- /* Share the palette, if any */
- if (surface->internal->palette) {
- SDL_SetSurfacePalette(tmp, surface->internal->palette);
- }
- SDL_FillSurfaceRect(tmp, NULL, surface->internal->map.info.colorkey);
- tmp->internal->map.info.flags &= ~SDL_COPY_COLORKEY;
- /* Conversion of the colorkey */
- tmp2 = SDL_ConvertSurfaceAndColorspace(tmp, format, palette, colorspace, props);
- if (!tmp2) {
- SDL_DestroySurface(tmp);
- goto error;
- }
- /* Get the converted colorkey */
- SDL_memcpy(&converted_colorkey, tmp2->pixels, tmp2->internal->format->bytes_per_pixel);
- SDL_DestroySurface(tmp);
- SDL_DestroySurface(tmp2);
- /* Set the converted colorkey on the new surface */
- SDL_SetSurfaceColorKey(convert, 1, converted_colorkey);
- /* This is needed when converting for 3D texture upload */
- if (convert_colorkey) {
- SDL_ConvertColorkeyToAlpha(convert, SDL_TRUE);
- }
- }
- }
- end:
- if (temp_palette) {
- SDL_DestroyPalette(temp_palette);
- }
- SDL_SetSurfaceClipRect(convert, &surface->internal->clip_rect);
- /* Enable alpha blending by default if the new surface has an
- * alpha channel or alpha modulation */
- if (SDL_ISPIXELFORMAT_ALPHA(format) ||
- (copy_flags & SDL_COPY_MODULATE_ALPHA)) {
- SDL_SetSurfaceBlendMode(convert, SDL_BLENDMODE_BLEND);
- }
- if (copy_flags & SDL_COPY_RLE_DESIRED) {
- SDL_SetSurfaceRLE(convert, SDL_TRUE);
- }
- /* We're ready to go! */
- return convert;
- error:
- if (temp_palette) {
- SDL_DestroyPalette(temp_palette);
- }
- if (convert) {
- SDL_DestroySurface(convert);
- }
- return NULL;
- }
- SDL_Surface *SDL_DuplicateSurface(SDL_Surface *surface)
- {
- if (!SDL_SurfaceValid(surface)) {
- SDL_InvalidParamError("surface");
- return NULL;
- }
- return SDL_ConvertSurfaceAndColorspace(surface, surface->format, surface->internal->palette, SDL_GetSurfaceColorspace(surface), surface->internal->props);
- }
- SDL_Surface *SDL_ConvertSurface(SDL_Surface *surface, SDL_PixelFormat format)
- {
- if (!SDL_SurfaceValid(surface)) {
- SDL_InvalidParamError("surface");
- return NULL;
- }
- return SDL_ConvertSurfaceAndColorspace(surface, format, NULL, SDL_GetDefaultColorspaceForFormat(format), surface->internal->props);
- }
- SDL_Surface *SDL_DuplicatePixels(int width, int height, SDL_PixelFormat format, SDL_Colorspace colorspace, void *pixels, int pitch)
- {
- SDL_Surface *surface = SDL_CreateSurface(width, height, format);
- if (surface) {
- int length = width * SDL_BYTESPERPIXEL(format);
- Uint8 *src = (Uint8 *)pixels;
- Uint8 *dst = (Uint8 *)surface->pixels;
- int rows = height;
- while (rows--) {
- SDL_memcpy(dst, src, length);
- dst += surface->pitch;
- src += pitch;
- }
- SDL_SetSurfaceColorspace(surface, colorspace);
- }
- return surface;
- }
- int SDL_ConvertPixelsAndColorspace(int width, int height,
- SDL_PixelFormat src_format, SDL_Colorspace src_colorspace, SDL_PropertiesID src_properties, const void *src, int src_pitch,
- SDL_PixelFormat dst_format, SDL_Colorspace dst_colorspace, SDL_PropertiesID dst_properties, void *dst, int dst_pitch)
- {
- SDL_InternalSurface src_data, dst_data;
- SDL_Surface *src_surface;
- SDL_Surface *dst_surface;
- SDL_Rect rect;
- void *nonconst_src = (void *)src;
- int ret;
- if (!src) {
- return SDL_InvalidParamError("src");
- }
- if (!src_pitch) {
- return SDL_InvalidParamError("src_pitch");
- }
- if (!dst) {
- return SDL_InvalidParamError("dst");
- }
- if (!dst_pitch) {
- return SDL_InvalidParamError("dst_pitch");
- }
- if (src_colorspace == SDL_COLORSPACE_UNKNOWN) {
- src_colorspace = SDL_GetDefaultColorspaceForFormat(src_format);
- }
- if (dst_colorspace == SDL_COLORSPACE_UNKNOWN) {
- dst_colorspace = SDL_GetDefaultColorspaceForFormat(dst_format);
- }
- #if SDL_HAVE_YUV
- if (SDL_ISPIXELFORMAT_FOURCC(src_format) && SDL_ISPIXELFORMAT_FOURCC(dst_format)) {
- return SDL_ConvertPixels_YUV_to_YUV(width, height, src_format, src_colorspace, src_properties, src, src_pitch, dst_format, dst_colorspace, dst_properties, dst, dst_pitch);
- } else if (SDL_ISPIXELFORMAT_FOURCC(src_format)) {
- return SDL_ConvertPixels_YUV_to_RGB(width, height, src_format, src_colorspace, src_properties, src, src_pitch, dst_format, dst_colorspace, dst_properties, dst, dst_pitch);
- } else if (SDL_ISPIXELFORMAT_FOURCC(dst_format)) {
- return SDL_ConvertPixels_RGB_to_YUV(width, height, src_format, src_colorspace, src_properties, src, src_pitch, dst_format, dst_colorspace, dst_properties, dst, dst_pitch);
- }
- #else
- if (SDL_ISPIXELFORMAT_FOURCC(src_format) || SDL_ISPIXELFORMAT_FOURCC(dst_format)) {
- return SDL_SetError("SDL not built with YUV support");
- }
- #endif
- /* Fast path for same format copy */
- if (src_format == dst_format && src_colorspace == dst_colorspace) {
- int i;
- const int bpp = SDL_BYTESPERPIXEL(src_format);
- width *= bpp;
- for (i = height; i--;) {
- SDL_memcpy(dst, src, width);
- src = (const Uint8 *)src + src_pitch;
- dst = (Uint8 *)dst + dst_pitch;
- }
- return 0;
- }
- src_surface = SDL_InitializeSurface(&src_data, width, height, src_format, src_colorspace, src_properties, nonconst_src, src_pitch, SDL_TRUE);
- if (!src_surface) {
- return -1;
- }
- SDL_SetSurfaceBlendMode(src_surface, SDL_BLENDMODE_NONE);
- dst_surface = SDL_InitializeSurface(&dst_data, width, height, dst_format, dst_colorspace, dst_properties, dst, dst_pitch, SDL_TRUE);
- if (!dst_surface) {
- return -1;
- }
- /* Set up the rect and go! */
- rect.x = 0;
- rect.y = 0;
- rect.w = width;
- rect.h = height;
- ret = SDL_BlitSurfaceUnchecked(src_surface, &rect, dst_surface, &rect);
- SDL_DestroySurface(src_surface);
- SDL_DestroySurface(dst_surface);
- return ret;
- }
- int SDL_ConvertPixels(int width, int height,
- SDL_PixelFormat src_format, const void *src, int src_pitch,
- SDL_PixelFormat dst_format, void *dst, int dst_pitch)
- {
- return SDL_ConvertPixelsAndColorspace(width, height,
- src_format, SDL_COLORSPACE_UNKNOWN, 0, src, src_pitch,
- dst_format, SDL_COLORSPACE_UNKNOWN, 0, dst, dst_pitch);
- }
- /*
- * Premultiply the alpha on a block of pixels
- *
- * Here are some ideas for optimization:
- * https://github.com/Wizermil/premultiply_alpha/tree/master/premultiply_alpha
- * https://developer.arm.com/documentation/101964/0201/Pre-multiplied-alpha-channel-data
- */
- static void SDL_PremultiplyAlpha_AXYZ8888(int width, int height, const void *src, int src_pitch, void *dst, int dst_pitch)
- {
- int c;
- Uint32 srcpixel;
- Uint32 srcR, srcG, srcB, srcA;
- Uint32 dstpixel;
- Uint32 dstR, dstG, dstB, dstA;
- while (height--) {
- const Uint32 *src_px = (const Uint32 *)src;
- Uint32 *dst_px = (Uint32 *)dst;
- for (c = width; c; --c) {
- /* Component bytes extraction. */
- srcpixel = *src_px++;
- RGBA_FROM_ARGB8888(srcpixel, srcR, srcG, srcB, srcA);
- /* Alpha pre-multiplication of each component. */
- dstA = srcA;
- dstR = (srcA * srcR) / 255;
- dstG = (srcA * srcG) / 255;
- dstB = (srcA * srcB) / 255;
- /* ARGB8888 pixel recomposition. */
- ARGB8888_FROM_RGBA(dstpixel, dstR, dstG, dstB, dstA);
- *dst_px++ = dstpixel;
- }
- src = (const Uint8 *)src + src_pitch;
- dst = (Uint8 *)dst + dst_pitch;
- }
- }
- static void SDL_PremultiplyAlpha_XYZA8888(int width, int height, const void *src, int src_pitch, void *dst, int dst_pitch)
- {
- int c;
- Uint32 srcpixel;
- Uint32 srcR, srcG, srcB, srcA;
- Uint32 dstpixel;
- Uint32 dstR, dstG, dstB, dstA;
- while (height--) {
- const Uint32 *src_px = (const Uint32 *)src;
- Uint32 *dst_px = (Uint32 *)dst;
- for (c = width; c; --c) {
- /* Component bytes extraction. */
- srcpixel = *src_px++;
- RGBA_FROM_RGBA8888(srcpixel, srcR, srcG, srcB, srcA);
- /* Alpha pre-multiplication of each component. */
- dstA = srcA;
- dstR = (srcA * srcR) / 255;
- dstG = (srcA * srcG) / 255;
- dstB = (srcA * srcB) / 255;
- /* RGBA8888 pixel recomposition. */
- RGBA8888_FROM_RGBA(dstpixel, dstR, dstG, dstB, dstA);
- *dst_px++ = dstpixel;
- }
- src = (const Uint8 *)src + src_pitch;
- dst = (Uint8 *)dst + dst_pitch;
- }
- }
- static void SDL_PremultiplyAlpha_AXYZ128(int width, int height, const void *src, int src_pitch, void *dst, int dst_pitch)
- {
- int c;
- float flR, flG, flB, flA;
- while (height--) {
- const float *src_px = (const float *)src;
- float *dst_px = (float *)dst;
- for (c = width; c; --c) {
- flA = *src_px++;
- flR = *src_px++;
- flG = *src_px++;
- flB = *src_px++;
- /* Alpha pre-multiplication of each component. */
- flR *= flA;
- flG *= flA;
- flB *= flA;
- *dst_px++ = flA;
- *dst_px++ = flR;
- *dst_px++ = flG;
- *dst_px++ = flB;
- }
- src = (const Uint8 *)src + src_pitch;
- dst = (Uint8 *)dst + dst_pitch;
- }
- }
- static int SDL_PremultiplyAlphaPixelsAndColorspace(int width, int height, SDL_PixelFormat src_format, SDL_Colorspace src_colorspace, SDL_PropertiesID src_properties, const void *src, int src_pitch, SDL_PixelFormat dst_format, SDL_Colorspace dst_colorspace, SDL_PropertiesID dst_properties, void *dst, int dst_pitch, SDL_bool linear)
- {
- SDL_Surface *convert = NULL;
- void *final_dst = dst;
- int final_dst_pitch = dst_pitch;
- SDL_PixelFormat format;
- SDL_Colorspace colorspace;
- int result = -1;
- if (!src) {
- return SDL_InvalidParamError("src");
- }
- if (!src_pitch) {
- return SDL_InvalidParamError("src_pitch");
- }
- if (!dst) {
- return SDL_InvalidParamError("dst");
- }
- if (!dst_pitch) {
- return SDL_InvalidParamError("dst_pitch");
- }
- // Use a high precision format if we're converting to linear colorspace or using high precision pixel formats
- if (linear ||
- SDL_ISPIXELFORMAT_10BIT(src_format) || SDL_BITSPERPIXEL(src_format) > 32 ||
- SDL_ISPIXELFORMAT_10BIT(dst_format) || SDL_BITSPERPIXEL(dst_format) > 32) {
- if (src_format == SDL_PIXELFORMAT_ARGB128_FLOAT ||
- src_format == SDL_PIXELFORMAT_ABGR128_FLOAT) {
- format = src_format;
- } else {
- format = SDL_PIXELFORMAT_ARGB128_FLOAT;
- }
- } else {
- if (src_format == SDL_PIXELFORMAT_ARGB8888 ||
- src_format == SDL_PIXELFORMAT_ABGR8888 ||
- src_format == SDL_PIXELFORMAT_RGBA8888 ||
- src_format == SDL_PIXELFORMAT_BGRA8888) {
- format = src_format;
- } else {
- format = SDL_PIXELFORMAT_ARGB8888;
- }
- }
- if (linear) {
- colorspace = SDL_COLORSPACE_SRGB_LINEAR;
- } else {
- colorspace = SDL_COLORSPACE_SRGB;
- }
- if (src_format != format || src_colorspace != colorspace) {
- convert = SDL_CreateSurface(width, height, format);
- if (!convert) {
- goto done;
- }
- if (SDL_ConvertPixelsAndColorspace(width, height, src_format, src_colorspace, src_properties, src, src_pitch, format, colorspace, 0, convert->pixels, convert->pitch) < 0) {
- goto done;
- }
- src = convert->pixels;
- src_pitch = convert->pitch;
- dst = convert->pixels;
- dst_pitch = convert->pitch;
- } else if (dst_format != format || dst_colorspace != colorspace) {
- convert = SDL_CreateSurface(width, height, format);
- if (!convert) {
- goto done;
- }
- dst = convert->pixels;
- dst_pitch = convert->pitch;
- }
- switch (format) {
- case SDL_PIXELFORMAT_ARGB8888:
- case SDL_PIXELFORMAT_ABGR8888:
- SDL_PremultiplyAlpha_AXYZ8888(width, height, src, src_pitch, dst, dst_pitch);
- break;
- case SDL_PIXELFORMAT_RGBA8888:
- case SDL_PIXELFORMAT_BGRA8888:
- SDL_PremultiplyAlpha_XYZA8888(width, height, src, src_pitch, dst, dst_pitch);
- break;
- case SDL_PIXELFORMAT_ARGB128_FLOAT:
- case SDL_PIXELFORMAT_ABGR128_FLOAT:
- SDL_PremultiplyAlpha_AXYZ128(width, height, src, src_pitch, dst, dst_pitch);
- break;
- default:
- SDL_SetError("Unexpected internal pixel format");
- goto done;
- }
- if (dst != final_dst) {
- if (SDL_ConvertPixelsAndColorspace(width, height, format, colorspace, 0, convert->pixels, convert->pitch, dst_format, dst_colorspace, dst_properties, final_dst, final_dst_pitch) < 0) {
- goto done;
- }
- }
- result = 0;
- done:
- if (convert) {
- SDL_DestroySurface(convert);
- }
- return result;
- }
- int SDL_PremultiplyAlpha(int width, int height,
- SDL_PixelFormat src_format, const void *src, int src_pitch,
- SDL_PixelFormat dst_format, void *dst, int dst_pitch, SDL_bool linear)
- {
- SDL_Colorspace src_colorspace = SDL_GetDefaultColorspaceForFormat(src_format);
- SDL_Colorspace dst_colorspace = SDL_GetDefaultColorspaceForFormat(dst_format);
- return SDL_PremultiplyAlphaPixelsAndColorspace(width, height, src_format, src_colorspace, 0, src, src_pitch, dst_format, dst_colorspace, 0, dst, dst_pitch, linear);
- }
- int SDL_PremultiplySurfaceAlpha(SDL_Surface *surface, SDL_bool linear)
- {
- SDL_Colorspace colorspace;
- if (!SDL_SurfaceValid(surface)) {
- return SDL_InvalidParamError("surface");
- }
- colorspace = SDL_GetSurfaceColorspace(surface);
- return SDL_PremultiplyAlphaPixelsAndColorspace(surface->w, surface->h, surface->format, colorspace, surface->internal->props, surface->pixels, surface->pitch, surface->format, colorspace, surface->internal->props, surface->pixels, surface->pitch, linear);
- }
- Uint32 SDL_MapSurfaceRGB(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b)
- {
- return SDL_MapSurfaceRGBA(surface, r, g, b, SDL_ALPHA_OPAQUE);
- }
- Uint32 SDL_MapSurfaceRGBA(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
- {
- if (!SDL_SurfaceValid(surface)) {
- SDL_InvalidParamError("surface");
- return 0;
- }
- return SDL_MapRGBA(surface->internal->format, surface->internal->palette, r, g, b, a);
- }
- /* This function Copyright 2023 Collabora Ltd., contributed to SDL under the ZLib license */
- int SDL_ReadSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 *r, Uint8 *g, Uint8 *b, Uint8 *a)
- {
- Uint32 pixel = 0;
- size_t bytes_per_pixel;
- Uint8 unused;
- Uint8 *p;
- int result = -1;
- if (!surface || !surface->format || !surface->pixels) {
- return SDL_InvalidParamError("surface");
- }
- if (x < 0 || x >= surface->w) {
- return SDL_InvalidParamError("x");
- }
- if (y < 0 || y >= surface->h) {
- return SDL_InvalidParamError("y");
- }
- if (!r) {
- r = &unused;
- }
- if (!g) {
- g = &unused;
- }
- if (!b) {
- b = &unused;
- }
- if (!a) {
- a = &unused;
- }
- bytes_per_pixel = SDL_BYTESPERPIXEL(surface->format);
- if (SDL_MUSTLOCK(surface)) {
- if (SDL_LockSurface(surface) < 0) {
- return -1;
- }
- }
- p = (Uint8 *)surface->pixels + y * surface->pitch + x * bytes_per_pixel;
- if (bytes_per_pixel > sizeof(pixel)) {
- /* This is really slow, but it gets the job done */
- Uint8 rgba[4];
- SDL_Colorspace colorspace = SDL_GetSurfaceColorspace(surface);
- if (SDL_ConvertPixelsAndColorspace(1, 1, surface->format, colorspace, surface->internal->props, p, surface->pitch, SDL_PIXELFORMAT_RGBA32, SDL_COLORSPACE_SRGB, 0, rgba, sizeof(rgba)) == 0) {
- *r = rgba[0];
- *g = rgba[1];
- *b = rgba[2];
- *a = rgba[3];
- result = 0;
- }
- } else {
- /* Fill the appropriate number of least-significant bytes of pixel,
- * leaving the most-significant bytes set to zero */
- #if SDL_BYTEORDER == SDL_BIG_ENDIAN
- SDL_memcpy(((Uint8 *)&pixel) + (sizeof(pixel) - bytes_per_pixel), p, bytes_per_pixel);
- #else
- SDL_memcpy(&pixel, p, bytes_per_pixel);
- #endif
- SDL_GetRGBA(pixel, surface->internal->format, surface->internal->palette, r, g, b, a);
- result = 0;
- }
- if (SDL_MUSTLOCK(surface)) {
- SDL_UnlockSurface(surface);
- }
- return result;
- }
- /*
- * Free a surface created by the above function.
- */
- void SDL_DestroySurface(SDL_Surface *surface)
- {
- if (!SDL_SurfaceValid(surface)) {
- return;
- }
- if (surface->internal->flags & SDL_INTERNAL_SURFACE_DONTFREE) {
- return;
- }
- if (--surface->refcount > 0) {
- return;
- }
- SDL_DestroyProperties(surface->internal->props);
- SDL_InvalidateMap(&surface->internal->map);
- SDL_InvalidateAllBlitMap(surface);
- while (surface->internal->locked > 0) {
- SDL_UnlockSurface(surface);
- }
- #if SDL_HAVE_RLE
- if (surface->internal->flags & SDL_INTERNAL_SURFACE_RLEACCEL) {
- SDL_UnRLESurface(surface, SDL_FALSE);
- }
- #endif
- SDL_SetSurfacePalette(surface, NULL);
- if (surface->flags & SDL_SURFACE_PREALLOCATED) {
- /* Don't free */
- } else if (surface->flags & SDL_SURFACE_SIMD_ALIGNED) {
- /* Free aligned */
- SDL_aligned_free(surface->pixels);
- } else {
- /* Normal */
- SDL_free(surface->pixels);
- }
- if (!(surface->internal->flags & SDL_INTERNAL_SURFACE_STACK)) {
- SDL_free(surface);
- }
- }
|