| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295 |
- /*
- Simple DirectMedia Layer
- Copyright (C) 1997-2019 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_video.h"
- #include "SDL_sysvideo.h"
- #include "SDL_blit.h"
- #include "SDL_RLEaccel_c.h"
- #include "SDL_pixels_c.h"
- #include "SDL_yuv_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));
- /* Public routines */
- /*
- * Calculate the pad-aligned scanline width of a surface
- */
- static int
- SDL_CalculatePitch(Uint32 format, int width)
- {
- int pitch;
- if (SDL_ISPIXELFORMAT_FOURCC(format) || SDL_BITSPERPIXEL(format) >= 8) {
- pitch = (width * SDL_BYTESPERPIXEL(format));
- } else {
- pitch = ((width * SDL_BITSPERPIXEL(format)) + 7) / 8;
- }
- pitch = (pitch + 3) & ~3; /* 4-byte aligning for speed */
- return pitch;
- }
- /*
- * Create an empty RGB surface of the appropriate depth using the given
- * enum SDL_PIXELFORMAT_* format
- */
- SDL_Surface *
- SDL_CreateRGBSurfaceWithFormat(Uint32 flags, int width, int height, int depth,
- Uint32 format)
- {
- SDL_Surface *surface;
- /* The flags are no longer used, make the compiler happy */
- (void)flags;
- /* Allocate the surface */
- surface = (SDL_Surface *) SDL_calloc(1, sizeof(*surface));
- if (surface == NULL) {
- SDL_OutOfMemory();
- return NULL;
- }
- surface->format = SDL_AllocFormat(format);
- if (!surface->format) {
- SDL_FreeSurface(surface);
- return NULL;
- }
- surface->w = width;
- surface->h = height;
- surface->pitch = SDL_CalculatePitch(format, width);
- SDL_SetClipRect(surface, NULL);
- if (SDL_ISPIXELFORMAT_INDEXED(surface->format->format)) {
- SDL_Palette *palette =
- SDL_AllocPalette((1 << surface->format->BitsPerPixel));
- if (!palette) {
- SDL_FreeSurface(surface);
- 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;
- }
- SDL_SetSurfacePalette(surface, palette);
- SDL_FreePalette(palette);
- }
- /* Get the pixels */
- if (surface->w && surface->h) {
- /* Assumptions checked in surface_size_assumptions assert above */
- Sint64 size = ((Sint64)surface->h * surface->pitch);
- if (size < 0 || size > SDL_MAX_SINT32) {
- /* Overflow... */
- SDL_FreeSurface(surface);
- SDL_OutOfMemory();
- return NULL;
- }
- surface->pixels = SDL_SIMDAlloc((size_t)size);
- if (!surface->pixels) {
- SDL_FreeSurface(surface);
- SDL_OutOfMemory();
- return NULL;
- }
- surface->flags |= SDL_SIMD_ALIGNED;
- /* This is important for bitmaps */
- SDL_memset(surface->pixels, 0, surface->h * surface->pitch);
- }
- /* Allocate an empty mapping */
- surface->map = SDL_AllocBlitMap();
- if (!surface->map) {
- SDL_FreeSurface(surface);
- return NULL;
- }
- /* By default surface with an alpha mask are set up for blending */
- if (surface->format->Amask) {
- SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_BLEND);
- }
- /* The surface is ready to go */
- surface->refcount = 1;
- return surface;
- }
- /*
- * Create an empty RGB surface of the appropriate depth
- */
- SDL_Surface *
- SDL_CreateRGBSurface(Uint32 flags,
- int width, int height, int depth,
- Uint32 Rmask, Uint32 Gmask, Uint32 Bmask, Uint32 Amask)
- {
- Uint32 format;
- /* Get the pixel format */
- format = SDL_MasksToPixelFormatEnum(depth, Rmask, Gmask, Bmask, Amask);
- if (format == SDL_PIXELFORMAT_UNKNOWN) {
- SDL_SetError("Unknown pixel format");
- return NULL;
- }
- return SDL_CreateRGBSurfaceWithFormat(flags, width, height, depth, format);
- }
- /*
- * Create an RGB surface from an existing memory buffer
- */
- SDL_Surface *
- SDL_CreateRGBSurfaceFrom(void *pixels,
- int width, int height, int depth, int pitch,
- Uint32 Rmask, Uint32 Gmask, Uint32 Bmask,
- Uint32 Amask)
- {
- SDL_Surface *surface;
- surface = SDL_CreateRGBSurface(0, 0, 0, depth, Rmask, Gmask, Bmask, Amask);
- if (surface != NULL) {
- surface->flags |= SDL_PREALLOC;
- surface->pixels = pixels;
- surface->w = width;
- surface->h = height;
- surface->pitch = pitch;
- SDL_SetClipRect(surface, NULL);
- }
- return surface;
- }
- /*
- * Create an RGB surface from an existing memory buffer using the given given
- * enum SDL_PIXELFORMAT_* format
- */
- SDL_Surface *
- SDL_CreateRGBSurfaceWithFormatFrom(void *pixels,
- int width, int height, int depth, int pitch,
- Uint32 format)
- {
- SDL_Surface *surface;
- surface = SDL_CreateRGBSurfaceWithFormat(0, 0, 0, depth, format);
- if (surface != NULL) {
- surface->flags |= SDL_PREALLOC;
- surface->pixels = pixels;
- surface->w = width;
- surface->h = height;
- surface->pitch = pitch;
- SDL_SetClipRect(surface, NULL);
- }
- return surface;
- }
- int
- SDL_SetSurfacePalette(SDL_Surface * surface, SDL_Palette * palette)
- {
- if (!surface) {
- return SDL_SetError("SDL_SetSurfacePalette() passed a NULL surface");
- }
- if (SDL_SetPixelFormatPalette(surface->format, palette) < 0) {
- return -1;
- }
- SDL_InvalidateMap(surface->map);
- return 0;
- }
- int
- SDL_SetSurfaceRLE(SDL_Surface * surface, int flag)
- {
- int flags;
- if (!surface) {
- return -1;
- }
- flags = surface->map->info.flags;
- if (flag) {
- surface->map->info.flags |= SDL_COPY_RLE_DESIRED;
- } else {
- surface->map->info.flags &= ~SDL_COPY_RLE_DESIRED;
- }
- if (surface->map->info.flags != flags) {
- SDL_InvalidateMap(surface->map);
- }
- return 0;
- }
- int
- SDL_SetColorKey(SDL_Surface * surface, int flag, Uint32 key)
- {
- int flags;
- if (!surface) {
- return SDL_InvalidParamError("surface");
- }
- if (surface->format->palette && key >= ((Uint32) surface->format->palette->ncolors)) {
- return SDL_InvalidParamError("key");
- }
- if (flag & SDL_RLEACCEL) {
- SDL_SetSurfaceRLE(surface, 1);
- }
- flags = surface->map->info.flags;
- if (flag) {
- surface->map->info.flags |= SDL_COPY_COLORKEY;
- surface->map->info.colorkey = key;
- } else {
- surface->map->info.flags &= ~SDL_COPY_COLORKEY;
- }
- if (surface->map->info.flags != flags) {
- SDL_InvalidateMap(surface->map);
- }
- return 0;
- }
- SDL_bool
- SDL_HasColorKey(SDL_Surface * surface)
- {
- if (!surface) {
- return SDL_FALSE;
- }
- if (!(surface->map->info.flags & SDL_COPY_COLORKEY)) {
- return SDL_FALSE;
- }
- return SDL_TRUE;
- }
- int
- SDL_GetColorKey(SDL_Surface * surface, Uint32 * key)
- {
- if (!surface) {
- return SDL_InvalidParamError("surface");
- }
- if (!(surface->map->info.flags & SDL_COPY_COLORKEY)) {
- return SDL_SetError("Surface doesn't have a colorkey");
- }
- if (key) {
- *key = surface->map->info.colorkey;
- }
- return 0;
- }
- /* This is a fairly slow function to switch from colorkey to alpha */
- static void
- SDL_ConvertColorkeyToAlpha(SDL_Surface * surface, SDL_bool ignore_alpha)
- {
- int x, y;
- if (!surface) {
- return;
- }
- if (!(surface->map->info.flags & SDL_COPY_COLORKEY) ||
- !surface->format->Amask) {
- return;
- }
- SDL_LockSurface(surface);
- switch (surface->format->BytesPerPixel) {
- case 2:
- {
- Uint16 *row, *spot;
- Uint16 ckey = (Uint16) surface->map->info.colorkey;
- Uint16 mask = (Uint16) (~surface->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;
- }
- }
- }
- break;
- case 3:
- /* FIXME */
- break;
- case 4:
- {
- Uint32 *row, *spot;
- Uint32 ckey = surface->map->info.colorkey;
- Uint32 mask = ~surface->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;
- }
- }
- }
- break;
- }
- SDL_UnlockSurface(surface);
- SDL_SetColorKey(surface, 0, 0);
- SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_BLEND);
- }
- int
- SDL_SetSurfaceColorMod(SDL_Surface * surface, Uint8 r, Uint8 g, Uint8 b)
- {
- int flags;
- if (!surface) {
- return -1;
- }
- surface->map->info.r = r;
- surface->map->info.g = g;
- surface->map->info.b = b;
- flags = surface->map->info.flags;
- if (r != 0xFF || g != 0xFF || b != 0xFF) {
- surface->map->info.flags |= SDL_COPY_MODULATE_COLOR;
- } else {
- surface->map->info.flags &= ~SDL_COPY_MODULATE_COLOR;
- }
- if (surface->map->info.flags != flags) {
- SDL_InvalidateMap(surface->map);
- }
- return 0;
- }
- int
- SDL_GetSurfaceColorMod(SDL_Surface * surface, Uint8 * r, Uint8 * g, Uint8 * b)
- {
- if (!surface) {
- return -1;
- }
- if (r) {
- *r = surface->map->info.r;
- }
- if (g) {
- *g = surface->map->info.g;
- }
- if (b) {
- *b = surface->map->info.b;
- }
- return 0;
- }
- int
- SDL_SetSurfaceAlphaMod(SDL_Surface * surface, Uint8 alpha)
- {
- int flags;
- if (!surface) {
- return -1;
- }
- surface->map->info.a = alpha;
- flags = surface->map->info.flags;
- if (alpha != 0xFF) {
- surface->map->info.flags |= SDL_COPY_MODULATE_ALPHA;
- } else {
- surface->map->info.flags &= ~SDL_COPY_MODULATE_ALPHA;
- }
- if (surface->map->info.flags != flags) {
- SDL_InvalidateMap(surface->map);
- }
- return 0;
- }
- int
- SDL_GetSurfaceAlphaMod(SDL_Surface * surface, Uint8 * alpha)
- {
- if (!surface) {
- return -1;
- }
- if (alpha) {
- *alpha = surface->map->info.a;
- }
- return 0;
- }
- int
- SDL_SetSurfaceBlendMode(SDL_Surface * surface, SDL_BlendMode blendMode)
- {
- int flags, status;
- if (!surface) {
- return -1;
- }
- status = 0;
- flags = surface->map->info.flags;
- surface->map->info.flags &=
- ~(SDL_COPY_BLEND | SDL_COPY_ADD | SDL_COPY_MOD | SDL_COPY_MUL);
- switch (blendMode) {
- case SDL_BLENDMODE_NONE:
- break;
- case SDL_BLENDMODE_BLEND:
- surface->map->info.flags |= SDL_COPY_BLEND;
- break;
- case SDL_BLENDMODE_ADD:
- surface->map->info.flags |= SDL_COPY_ADD;
- break;
- case SDL_BLENDMODE_MOD:
- surface->map->info.flags |= SDL_COPY_MOD;
- break;
- case SDL_BLENDMODE_MUL:
- surface->map->info.flags |= SDL_COPY_MUL;
- break;
- default:
- status = SDL_Unsupported();
- break;
- }
- if (surface->map->info.flags != flags) {
- SDL_InvalidateMap(surface->map);
- }
- return status;
- }
- int
- SDL_GetSurfaceBlendMode(SDL_Surface * surface, SDL_BlendMode *blendMode)
- {
- if (!surface) {
- return -1;
- }
- if (!blendMode) {
- return 0;
- }
- switch (surface->map->
- info.flags & (SDL_COPY_BLEND | SDL_COPY_ADD | SDL_COPY_MOD | SDL_COPY_MUL)) {
- case SDL_COPY_BLEND:
- *blendMode = SDL_BLENDMODE_BLEND;
- break;
- case SDL_COPY_ADD:
- *blendMode = SDL_BLENDMODE_ADD;
- 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_SetClipRect(SDL_Surface * surface, const SDL_Rect * rect)
- {
- SDL_Rect full_rect;
- /* Don't do anything if there's no surface to act on */
- if (!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->clip_rect = full_rect;
- return SDL_TRUE;
- }
- return SDL_IntersectRect(rect, &full_rect, &surface->clip_rect);
- }
- void
- SDL_GetClipRect(SDL_Surface * surface, SDL_Rect * rect)
- {
- if (surface && rect) {
- *rect = surface->clip_rect;
- }
- }
- /*
- * Set up a blit between two surfaces -- split into three parts:
- * The upper part, SDL_UpperBlit(), 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 optimimum 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_LowerBlit(SDL_Surface * src, SDL_Rect * srcrect,
- SDL_Surface * dst, SDL_Rect * dstrect)
- {
- /* Check to make sure the blit mapping is valid */
- if ((src->map->dst != dst) ||
- (dst->format->palette &&
- src->map->dst_palette_version != dst->format->palette->version) ||
- (src->format->palette &&
- src->map->src_palette_version != src->format->palette->version)) {
- if (SDL_MapSurface(src, dst) < 0) {
- return (-1);
- }
- /* just here for debugging */
- /* printf */
- /* ("src = 0x%08X src->flags = %08X src->map->info.flags = %08x\ndst = 0x%08X dst->flags = %08X dst->map->info.flags = %08X\nsrc->map->blit = 0x%08x\n", */
- /* src, dst->flags, src->map->info.flags, dst, dst->flags, */
- /* dst->map->info.flags, src->map->blit); */
- }
- return (src->map->blit(src, srcrect, dst, dstrect));
- }
- int
- SDL_UpperBlit(SDL_Surface * src, const SDL_Rect * srcrect,
- SDL_Surface * dst, SDL_Rect * dstrect)
- {
- SDL_Rect fulldst;
- int srcx, srcy, w, h;
- /* Make sure the surfaces aren't locked */
- if (!src || !dst) {
- return SDL_SetError("SDL_UpperBlit: passed a NULL surface");
- }
- if (src->locked || dst->locked) {
- return SDL_SetError("Surfaces must not be locked during blit");
- }
- /* If the destination rectangle is NULL, use the entire dest surface */
- if (dstrect == NULL) {
- fulldst.x = fulldst.y = 0;
- fulldst.w = dst->w;
- fulldst.h = dst->h;
- dstrect = &fulldst;
- }
- /* clip the source rectangle to the source surface */
- if (srcrect) {
- int maxw, maxh;
- srcx = srcrect->x;
- w = srcrect->w;
- if (srcx < 0) {
- w += srcx;
- dstrect->x -= srcx;
- srcx = 0;
- }
- maxw = src->w - srcx;
- if (maxw < w)
- w = maxw;
- srcy = srcrect->y;
- h = srcrect->h;
- if (srcy < 0) {
- h += srcy;
- dstrect->y -= srcy;
- srcy = 0;
- }
- maxh = src->h - srcy;
- if (maxh < h)
- h = maxh;
- } else {
- srcx = srcy = 0;
- w = src->w;
- h = src->h;
- }
- /* clip the destination rectangle against the clip rectangle */
- {
- SDL_Rect *clip = &dst->clip_rect;
- int dx, dy;
- dx = clip->x - dstrect->x;
- if (dx > 0) {
- w -= dx;
- dstrect->x += dx;
- srcx += dx;
- }
- dx = dstrect->x + w - clip->x - clip->w;
- if (dx > 0)
- w -= dx;
- dy = clip->y - dstrect->y;
- if (dy > 0) {
- h -= dy;
- dstrect->y += dy;
- srcy += dy;
- }
- dy = dstrect->y + h - clip->y - clip->h;
- if (dy > 0)
- h -= dy;
- }
- /* Switch back to a fast blit if we were previously stretching */
- if (src->map->info.flags & SDL_COPY_NEAREST) {
- src->map->info.flags &= ~SDL_COPY_NEAREST;
- SDL_InvalidateMap(src->map);
- }
- if (w > 0 && h > 0) {
- SDL_Rect sr;
- sr.x = srcx;
- sr.y = srcy;
- sr.w = dstrect->w = w;
- sr.h = dstrect->h = h;
- return SDL_LowerBlit(src, &sr, dst, dstrect);
- }
- dstrect->w = dstrect->h = 0;
- return 0;
- }
- int
- SDL_UpperBlitScaled(SDL_Surface * src, const SDL_Rect * srcrect,
- SDL_Surface * dst, SDL_Rect * dstrect)
- {
- 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 (!src || !dst) {
- return SDL_SetError("SDL_UpperBlitScaled: passed a NULL surface");
- }
- if (src->locked || dst->locked) {
- return SDL_SetError("Surfaces must not be locked during blit");
- }
- if (NULL == srcrect) {
- src_w = src->w;
- src_h = src->h;
- } else {
- src_w = srcrect->w;
- src_h = srcrect->h;
- }
- if (NULL == 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 (NULL == dstrect) {
- dst_x0 = 0;
- dst_y0 = 0;
- dst_x1 = dst_w - 1;
- dst_y1 = dst_h - 1;
- } else {
- dst_x0 = dstrect->x;
- dst_y0 = dstrect->y;
- dst_x1 = dst_x0 + dst_w - 1;
- dst_y1 = dst_y0 + dst_h - 1;
- }
- if (NULL == srcrect) {
- src_x0 = 0;
- src_y0 = 0;
- src_x1 = src_w - 1;
- src_y1 = src_h - 1;
- } else {
- src_x0 = srcrect->x;
- src_y0 = srcrect->y;
- src_x1 = src_x0 + src_w - 1;
- src_y1 = src_y0 + src_h - 1;
- /* 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 + 1) * scaling_w;
- src_x1 = src->w - 1;
- }
- if (src_y0 < 0) {
- dst_y0 -= src_y0 * scaling_h;
- src_y0 = 0;
- }
- if (src_y1 >= src->h) {
- dst_y1 -= (src_y1 - src->h + 1) * scaling_h;
- src_y1 = src->h - 1;
- }
- }
- /* Clip destination rectangle to the clip rectangle */
- /* Translate to clip space for easier calculations */
- dst_x0 -= dst->clip_rect.x;
- dst_x1 -= dst->clip_rect.x;
- dst_y0 -= dst->clip_rect.y;
- dst_y1 -= dst->clip_rect.y;
- if (dst_x0 < 0) {
- src_x0 -= dst_x0 / scaling_w;
- dst_x0 = 0;
- }
- if (dst_x1 >= dst->clip_rect.w) {
- src_x1 -= (dst_x1 - dst->clip_rect.w + 1) / scaling_w;
- dst_x1 = dst->clip_rect.w - 1;
- }
- if (dst_y0 < 0) {
- src_y0 -= dst_y0 / scaling_h;
- dst_y0 = 0;
- }
- if (dst_y1 >= dst->clip_rect.h) {
- src_y1 -= (dst_y1 - dst->clip_rect.h + 1) / scaling_h;
- dst_y1 = dst->clip_rect.h - 1;
- }
- /* Translate back to surface coordinates */
- dst_x0 += dst->clip_rect.x;
- dst_x1 += dst->clip_rect.x;
- dst_y0 += dst->clip_rect.y;
- dst_y1 += dst->clip_rect.y;
- final_src.x = (int)SDL_floor(src_x0 + 0.5);
- final_src.y = (int)SDL_floor(src_y0 + 0.5);
- final_src.w = (int)SDL_floor(src_x1 + 1 + 0.5) - (int)SDL_floor(src_x0 + 0.5);
- final_src.h = (int)SDL_floor(src_y1 + 1 + 0.5) - (int)SDL_floor(src_y0 + 0.5);
- final_dst.x = (int)SDL_floor(dst_x0 + 0.5);
- final_dst.y = (int)SDL_floor(dst_y0 + 0.5);
- final_dst.w = (int)SDL_floor(dst_x1 - dst_x0 + 1.5);
- final_dst.h = (int)SDL_floor(dst_y1 - dst_y0 + 1.5);
- if (final_dst.w < 0)
- final_dst.w = 0;
- if (final_dst.h < 0)
- final_dst.h = 0;
- 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_LowerBlitScaled(src, &final_src, dst, &final_dst);
- }
- /**
- * This is a semi-private blit function and it performs low-level surface
- * scaled blitting only.
- */
- int
- SDL_LowerBlitScaled(SDL_Surface * src, SDL_Rect * srcrect,
- SDL_Surface * dst, SDL_Rect * dstrect)
- {
- static const Uint32 complex_copy_flags = (
- SDL_COPY_MODULATE_COLOR | SDL_COPY_MODULATE_ALPHA |
- SDL_COPY_BLEND | SDL_COPY_ADD | SDL_COPY_MOD | SDL_COPY_MUL |
- SDL_COPY_COLORKEY
- );
- if (!(src->map->info.flags & SDL_COPY_NEAREST)) {
- src->map->info.flags |= SDL_COPY_NEAREST;
- SDL_InvalidateMap(src->map);
- }
- if ( !(src->map->info.flags & complex_copy_flags) &&
- src->format->format == dst->format->format &&
- !SDL_ISPIXELFORMAT_INDEXED(src->format->format) ) {
- return SDL_SoftStretch( src, srcrect, dst, dstrect );
- } else {
- return SDL_LowerBlit( src, srcrect, dst, dstrect );
- }
- }
- /*
- * Lock a surface to directly access the pixels
- */
- int
- SDL_LockSurface(SDL_Surface * surface)
- {
- if (!surface->locked) {
- /* Perform the lock */
- if (surface->flags & SDL_RLEACCEL) {
- SDL_UnRLESurface(surface, 1);
- surface->flags |= SDL_RLEACCEL; /* save accel'd state */
- }
- }
- /* Increment the surface lock count, for recursive locks */
- ++surface->locked;
- /* Ready to go.. */
- return (0);
- }
- /*
- * Unlock a previously locked surface
- */
- void
- SDL_UnlockSurface(SDL_Surface * surface)
- {
- /* Only perform an unlock if we are locked */
- if (!surface->locked || (--surface->locked > 0)) {
- return;
- }
- /* Update RLE encoded surface with new data */
- if ((surface->flags & SDL_RLEACCEL) == SDL_RLEACCEL) {
- surface->flags &= ~SDL_RLEACCEL; /* stop lying */
- SDL_RLESurface(surface);
- }
- }
- /*
- * Creates a new surface identical to the existing surface
- */
- SDL_Surface *
- SDL_DuplicateSurface(SDL_Surface * surface)
- {
- return SDL_ConvertSurface(surface, surface->format, surface->flags);
- }
- /*
- * Convert a surface into the specified pixel format.
- */
- SDL_Surface *
- SDL_ConvertSurface(SDL_Surface * surface, const SDL_PixelFormat * format,
- Uint32 flags)
- {
- SDL_Surface *convert;
- Uint32 copy_flags;
- SDL_Color copy_color;
- SDL_Rect bounds;
- int ret;
- int palette_ck_transform = 0;
- int palette_ck_value = 0;
- if (!surface) {
- SDL_InvalidParamError("surface");
- return NULL;
- }
- if (!format) {
- SDL_InvalidParamError("format");
- return NULL;
- }
- /* Check for empty destination palette! (results in empty image) */
- if (format->palette != NULL) {
- int i;
- for (i = 0; i < format->palette->ncolors; ++i) {
- if ((format->palette->colors[i].r != 0xFF) ||
- (format->palette->colors[i].g != 0xFF) ||
- (format->palette->colors[i].b != 0xFF))
- break;
- }
- if (i == format->palette->ncolors) {
- SDL_SetError("Empty destination palette");
- return (NULL);
- }
- }
- /* Create a new surface with the desired format */
- convert = SDL_CreateRGBSurface(flags, surface->w, surface->h,
- format->BitsPerPixel, format->Rmask,
- format->Gmask, format->Bmask,
- format->Amask);
- if (convert == NULL) {
- return (NULL);
- }
- /* Copy the palette if any */
- if (format->palette && convert->format->palette) {
- SDL_memcpy(convert->format->palette->colors,
- format->palette->colors,
- format->palette->ncolors * sizeof(SDL_Color));
- convert->format->palette->ncolors = format->palette->ncolors;
- }
- /* Save the original copy flags */
- copy_flags = surface->map->info.flags;
- copy_color.r = surface->map->info.r;
- copy_color.g = surface->map->info.g;
- copy_color.b = surface->map->info.b;
- copy_color.a = surface->map->info.a;
- surface->map->info.r = 0xFF;
- surface->map->info.g = 0xFF;
- surface->map->info.b = 0xFF;
- surface->map->info.a = 0xFF;
- surface->map->info.flags = 0;
- SDL_InvalidateMap(surface->map);
- /* Copy over the image data */
- bounds.x = 0;
- bounds.y = 0;
- bounds.w = surface->w;
- bounds.h = surface->h;
- /* 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->format->palette && !format->palette) {
- palette_ck_transform = 1;
- palette_ck_value = surface->format->palette->colors[surface->map->info.colorkey].a;
- surface->format->palette->colors[surface->map->info.colorkey].a = SDL_ALPHA_TRANSPARENT;
- }
- }
- ret = SDL_LowerBlit(surface, &bounds, convert, &bounds);
- /* Restore value */
- if (palette_ck_transform) {
- surface->format->palette->colors[surface->map->info.colorkey].a = palette_ck_value;
- }
- /* Clean up the original surface, and update converted surface */
- convert->map->info.r = copy_color.r;
- convert->map->info.g = copy_color.g;
- convert->map->info.b = copy_color.b;
- convert->map->info.a = copy_color.a;
- convert->map->info.flags =
- (copy_flags &
- ~(SDL_COPY_COLORKEY | SDL_COPY_BLEND
- | SDL_COPY_RLE_DESIRED | SDL_COPY_RLE_COLORKEY |
- SDL_COPY_RLE_ALPHAKEY));
- surface->map->info.r = copy_color.r;
- surface->map->info.g = copy_color.g;
- surface->map->info.b = copy_color.b;
- surface->map->info.a = copy_color.a;
- surface->map->info.flags = copy_flags;
- SDL_InvalidateMap(surface->map);
- /* SDL_LowerBlit failed, and so the conversion */
- if (ret < 0) {
- SDL_FreeSurface(convert);
- return NULL;
- }
- if (copy_flags & SDL_COPY_COLORKEY) {
- SDL_bool set_colorkey_by_color = SDL_FALSE;
- SDL_bool ignore_alpha = SDL_TRUE; /* Ignore, or not, alpha in colorkey comparison */
- if (surface->format->palette) {
- if (format->palette &&
- surface->format->palette->ncolors <= format->palette->ncolors &&
- (SDL_memcmp(surface->format->palette->colors, format->palette->colors,
- surface->format->palette->ncolors * sizeof(SDL_Color)) == 0)) {
- /* The palette is identical, just set the same colorkey */
- SDL_SetColorKey(convert, 1, surface->map->info.colorkey);
- } else if (!format->palette) {
- /* Was done by 'palette_ck_transform' */
- }else if (format->Amask) {
- set_colorkey_by_color = SDL_TRUE;
- ignore_alpha = 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_CreateRGBSurface(0, 1, 1,
- surface->format->BitsPerPixel, surface->format->Rmask,
- surface->format->Gmask, surface->format->Bmask,
- surface->format->Amask);
- /* Share the palette, if any */
- if (surface->format->palette) {
- SDL_SetSurfacePalette(tmp, surface->format->palette);
- }
- SDL_FillRect(tmp, NULL, surface->map->info.colorkey);
- tmp->map->info.flags &= ~SDL_COPY_COLORKEY;
- /* Convertion of the colorkey */
- tmp2 = SDL_ConvertSurface(tmp, format, 0);
- /* Get the converted colorkey */
- SDL_memcpy(&converted_colorkey, tmp2->pixels, tmp2->format->BytesPerPixel);
- SDL_FreeSurface(tmp);
- SDL_FreeSurface(tmp2);
- /* Set the converted colorkey on the new surface */
- SDL_SetColorKey(convert, 1, converted_colorkey);
- /* This is needed when converting for 3D texture upload */
- SDL_ConvertColorkeyToAlpha(convert, ignore_alpha);
- }
- }
- SDL_SetClipRect(convert, &surface->clip_rect);
- /* Enable alpha blending by default if the new surface has an
- * alpha channel or alpha modulation */
- if ((surface->format->Amask && format->Amask) ||
- (copy_flags & SDL_COPY_MODULATE_ALPHA)) {
- SDL_SetSurfaceBlendMode(convert, SDL_BLENDMODE_BLEND);
- }
- if ((copy_flags & SDL_COPY_RLE_DESIRED) || (flags & SDL_RLEACCEL)) {
- SDL_SetSurfaceRLE(convert, SDL_RLEACCEL);
- }
- /* We're ready to go! */
- return (convert);
- }
- SDL_Surface *
- SDL_ConvertSurfaceFormat(SDL_Surface * surface, Uint32 pixel_format,
- Uint32 flags)
- {
- SDL_PixelFormat *fmt;
- SDL_Surface *convert = NULL;
- fmt = SDL_AllocFormat(pixel_format);
- if (fmt) {
- convert = SDL_ConvertSurface(surface, fmt, flags);
- SDL_FreeFormat(fmt);
- }
- return convert;
- }
- /*
- * Create a surface on the stack for quick blit operations
- */
- static SDL_INLINE SDL_bool
- SDL_CreateSurfaceOnStack(int width, int height, Uint32 pixel_format,
- void * pixels, int pitch, SDL_Surface * surface,
- SDL_PixelFormat * format, SDL_BlitMap * blitmap)
- {
- if (SDL_ISPIXELFORMAT_INDEXED(pixel_format)) {
- SDL_SetError("Indexed pixel formats not supported");
- return SDL_FALSE;
- }
- if (SDL_InitFormat(format, pixel_format) < 0) {
- return SDL_FALSE;
- }
- SDL_zerop(surface);
- surface->flags = SDL_PREALLOC;
- surface->format = format;
- surface->pixels = pixels;
- surface->w = width;
- surface->h = height;
- surface->pitch = pitch;
- /* We don't actually need to set up the clip rect for our purposes */
- /* SDL_SetClipRect(surface, NULL); */
- /* Allocate an empty mapping */
- SDL_zerop(blitmap);
- blitmap->info.r = 0xFF;
- blitmap->info.g = 0xFF;
- blitmap->info.b = 0xFF;
- blitmap->info.a = 0xFF;
- surface->map = blitmap;
- /* The surface is ready to go */
- surface->refcount = 1;
- return SDL_TRUE;
- }
- /*
- * Copy a block of pixels of one format to another format
- */
- int SDL_ConvertPixels(int width, int height,
- Uint32 src_format, const void * src, int src_pitch,
- Uint32 dst_format, void * dst, int dst_pitch)
- {
- SDL_Surface src_surface, dst_surface;
- SDL_PixelFormat src_fmt, dst_fmt;
- SDL_BlitMap src_blitmap, dst_blitmap;
- SDL_Rect rect;
- void *nonconst_src = (void *) src;
- /* Check to make sure we are blitting somewhere, so we don't crash */
- if (!dst) {
- return SDL_InvalidParamError("dst");
- }
- if (!dst_pitch) {
- return SDL_InvalidParamError("dst_pitch");
- }
- if (SDL_ISPIXELFORMAT_FOURCC(src_format) && SDL_ISPIXELFORMAT_FOURCC(dst_format)) {
- return SDL_ConvertPixels_YUV_to_YUV(width, height, src_format, src, src_pitch, dst_format, dst, dst_pitch);
- } else if (SDL_ISPIXELFORMAT_FOURCC(src_format)) {
- return SDL_ConvertPixels_YUV_to_RGB(width, height, src_format, src, src_pitch, dst_format, dst, dst_pitch);
- } else if (SDL_ISPIXELFORMAT_FOURCC(dst_format)) {
- return SDL_ConvertPixels_RGB_to_YUV(width, height, src_format, src, src_pitch, dst_format, dst, dst_pitch);
- }
- /* Fast path for same format copy */
- if (src_format == dst_format) {
- 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;
- }
- if (!SDL_CreateSurfaceOnStack(width, height, src_format, nonconst_src,
- src_pitch,
- &src_surface, &src_fmt, &src_blitmap)) {
- return -1;
- }
- if (!SDL_CreateSurfaceOnStack(width, height, dst_format, dst, dst_pitch,
- &dst_surface, &dst_fmt, &dst_blitmap)) {
- return -1;
- }
- /* Set up the rect and go! */
- rect.x = 0;
- rect.y = 0;
- rect.w = width;
- rect.h = height;
- return SDL_LowerBlit(&src_surface, &rect, &dst_surface, &rect);
- }
- /*
- * Free a surface created by the above function.
- */
- void
- SDL_FreeSurface(SDL_Surface * surface)
- {
- if (surface == NULL) {
- return;
- }
- if (surface->flags & SDL_DONTFREE) {
- return;
- }
- SDL_InvalidateMap(surface->map);
- if (--surface->refcount > 0) {
- return;
- }
- while (surface->locked > 0) {
- SDL_UnlockSurface(surface);
- }
- if (surface->flags & SDL_RLEACCEL) {
- SDL_UnRLESurface(surface, 0);
- }
- if (surface->format) {
- SDL_SetSurfacePalette(surface, NULL);
- SDL_FreeFormat(surface->format);
- surface->format = NULL;
- }
- if (surface->flags & SDL_PREALLOC) {
- /* Don't free */
- } else if (surface->flags & SDL_SIMD_ALIGNED) {
- /* Free aligned */
- SDL_SIMDFree(surface->pixels);
- } else {
- /* Normal */
- SDL_free(surface->pixels);
- }
- if (surface->map) {
- SDL_FreeBlitMap(surface->map);
- }
- SDL_free(surface);
- }
- /* vi: set ts=4 sw=4 expandtab: */
|