2015-06-21 17:33:46 +02:00
|
|
|
/*
|
|
|
|
|
Simple DirectMedia Layer
|
2024-01-01 13:15:26 -08:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
2022-11-29 18:34:15 -08:00
|
|
|
#include "SDL_internal.h"
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
#include "SDL_sysvideo.h"
|
2023-10-18 15:02:01 -04:00
|
|
|
#include "SDL_video_c.h"
|
2015-06-21 17:33:46 +02:00
|
|
|
#include "SDL_blit.h"
|
|
|
|
|
#include "SDL_RLEaccel_c.h"
|
|
|
|
|
#include "SDL_pixels_c.h"
|
2017-11-12 22:51:12 -08:00
|
|
|
#include "SDL_yuv_c.h"
|
2020-12-27 20:28:24 +01:00
|
|
|
#include "../render/SDL_sysrender.h"
|
2024-07-08 14:59:18 -07:00
|
|
|
|
|
|
|
|
#include "SDL_surface_c.h"
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2020-06-17 08:47:27 -07:00
|
|
|
/* 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,
|
2022-11-30 12:51:59 -08:00
|
|
|
sizeof(int) == sizeof(Sint32) && sizeof(size_t) >= sizeof(Sint32));
|
2017-10-16 14:57:42 -07:00
|
|
|
|
2022-05-10 10:33:54 +01:00
|
|
|
SDL_COMPILE_TIME_ASSERT(can_indicate_overflow, SDL_SIZE_MAX > SDL_MAX_SINT32);
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/* Public routines */
|
2016-10-07 17:04:58 -07:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_bool SDL_SurfaceValid(SDL_Surface *surface)
|
|
|
|
|
{
|
|
|
|
|
return surface && surface->internal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SDL_UpdateSurfaceLockFlag(SDL_Surface *surface)
|
|
|
|
|
{
|
2024-07-17 14:03:53 -07:00
|
|
|
if (SDL_SurfaceHasRLE(surface)) {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->flags |= SDL_SURFACE_LOCK_NEEDED;
|
|
|
|
|
} else {
|
|
|
|
|
surface->flags &= ~SDL_SURFACE_LOCK_NEEDED;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-12 22:51:12 -08:00
|
|
|
/*
|
2022-05-10 10:33:54 +01:00
|
|
|
* Calculate the pad-aligned scanline width of a surface.
|
|
|
|
|
* Return SDL_SIZE_MAX on overflow.
|
2022-12-03 21:22:14 +01:00
|
|
|
*
|
|
|
|
|
* for FOURCC, use SDL_CalculateYUVSize()
|
2017-11-12 22:51:12 -08:00
|
|
|
*/
|
2023-05-23 11:29:41 -07:00
|
|
|
static int SDL_CalculateRGBSize(Uint32 format, size_t width, size_t height, size_t *size, size_t *pitch, SDL_bool minimal)
|
2017-11-12 22:51:12 -08:00
|
|
|
{
|
2022-12-03 21:22:14 +01:00
|
|
|
if (SDL_BITSPERPIXEL(format) >= 8) {
|
2023-03-30 11:30:11 +02:00
|
|
|
if (SDL_size_mul_overflow(width, SDL_BYTESPERPIXEL(format), pitch)) {
|
2024-01-18 19:41:26 +00:00
|
|
|
return SDL_SetError("width * bpp would overflow");
|
2022-05-10 10:33:54 +01:00
|
|
|
}
|
2019-10-18 08:56:54 -07:00
|
|
|
} else {
|
2023-03-30 11:30:11 +02:00
|
|
|
if (SDL_size_mul_overflow(width, SDL_BITSPERPIXEL(format), pitch)) {
|
2024-01-18 19:41:26 +00:00
|
|
|
return SDL_SetError("width * bpp would overflow");
|
2022-05-10 10:33:54 +01:00
|
|
|
}
|
2023-03-30 11:30:11 +02:00
|
|
|
if (SDL_size_add_overflow(*pitch, 7, pitch)) {
|
2024-01-18 19:41:26 +00:00
|
|
|
return SDL_SetError("aligning pitch would overflow");
|
2022-05-10 10:33:54 +01:00
|
|
|
}
|
2023-03-30 11:30:11 +02:00
|
|
|
*pitch /= 8;
|
2022-05-10 10:33:54 +01:00
|
|
|
}
|
2022-05-10 10:34:41 +01:00
|
|
|
if (!minimal) {
|
|
|
|
|
/* 4-byte aligning for speed */
|
2023-03-30 11:30:11 +02:00
|
|
|
if (SDL_size_add_overflow(*pitch, 3, pitch)) {
|
2024-01-18 19:41:26 +00:00
|
|
|
return SDL_SetError("aligning pitch would overflow");
|
2022-05-10 10:34:41 +01:00
|
|
|
}
|
2023-03-30 11:30:11 +02:00
|
|
|
*pitch &= ~3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (SDL_size_mul_overflow(height, *pitch, size)) {
|
2024-01-18 19:41:26 +00:00
|
|
|
return SDL_SetError("height * pitch would overflow");
|
2019-10-18 08:56:54 -07:00
|
|
|
}
|
2023-03-30 11:30:11 +02:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
int SDL_CalculateSurfaceSize(SDL_PixelFormat format, int width, int height, size_t *size, size_t *pitch, SDL_bool minimalPitch)
|
2023-03-30 11:30:11 +02:00
|
|
|
{
|
|
|
|
|
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;
|
2017-11-12 22:51:12 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
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)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_Surface *surface = &mem->surface;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_zerop(mem);
|
2022-05-10 10:34:41 +01:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->flags = SDL_SURFACE_PREALLOCATED;
|
|
|
|
|
surface->format = format;
|
|
|
|
|
surface->w = width;
|
|
|
|
|
surface->h = height;
|
|
|
|
|
surface->pixels = pixels;
|
|
|
|
|
surface->pitch = pitch;
|
2020-06-17 08:44:45 -07:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal = &mem->internal;
|
|
|
|
|
if (onstack) {
|
|
|
|
|
surface->internal->flags |= SDL_INTERNAL_SURFACE_STACK;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->format = SDL_GetPixelFormatDetails(format);
|
|
|
|
|
if (!surface->internal->format) {
|
2022-12-27 06:36:39 -08:00
|
|
|
SDL_DestroySurface(surface);
|
2015-06-21 17:33:46 +02:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
/* 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;
|
|
|
|
|
|
2024-07-21 08:43:51 -07:00
|
|
|
if (colorspace == SDL_COLORSPACE_UNKNOWN) {
|
|
|
|
|
surface->internal->colorspace = SDL_GetDefaultColorspaceForFormat(format);
|
|
|
|
|
} else {
|
|
|
|
|
surface->internal->colorspace = colorspace;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (props) {
|
|
|
|
|
if (SDL_CopyProperties(props, SDL_GetSurfaceProperties(surface)) < 0) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
/* By default surfaces with an alpha mask are set up for blending */
|
|
|
|
|
if (SDL_ISPIXELFORMAT_ALPHA(surface->format)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_BLEND);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The surface is ready to go */
|
|
|
|
|
surface->refcount = 1;
|
|
|
|
|
return surface;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
/*
|
|
|
|
|
* 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;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 17:04:58 -07:00
|
|
|
/*
|
2023-12-15 10:57:54 -05:00
|
|
|
* Create an RGB surface from an existing memory buffer using the given
|
2016-10-07 17:04:58 -07:00
|
|
|
* enum SDL_PIXELFORMAT_* format
|
|
|
|
|
*/
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_Surface *SDL_CreateSurfaceFrom(int width, int height, SDL_PixelFormat format, void *pixels, int pitch)
|
2016-10-07 17:04:58 -07:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_InternalSurface *mem;
|
2022-05-10 10:34:41 +01:00
|
|
|
|
|
|
|
|
if (width < 0) {
|
|
|
|
|
SDL_InvalidParamError("width");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (height < 0) {
|
|
|
|
|
SDL_InvalidParamError("height");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-09 22:29:15 +01:00
|
|
|
if (pitch == 0 && !pixels) {
|
2023-01-24 22:49:33 -08:00
|
|
|
/* The application will fill these in later with valid values */
|
|
|
|
|
} else {
|
|
|
|
|
size_t minimalPitch;
|
|
|
|
|
|
2024-03-07 05:20:20 -08:00
|
|
|
if (SDL_CalculateSurfaceSize(format, width, height, NULL, &minimalPitch, SDL_TRUE /* minimal pitch */) < 0) {
|
2023-03-30 11:30:11 +02:00
|
|
|
/* Overflow... */
|
|
|
|
|
return NULL;
|
2023-01-24 22:49:33 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pitch < 0 || (size_t)pitch < minimalPitch) {
|
2022-12-03 21:22:14 +01:00
|
|
|
SDL_InvalidParamError("pitch");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2022-05-10 10:34:41 +01:00
|
|
|
}
|
2016-10-07 17:04:58 -07:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
/* Allocate and initialize the surface */
|
|
|
|
|
mem = (SDL_InternalSurface *)SDL_malloc(sizeof(*mem));
|
|
|
|
|
if (!mem) {
|
|
|
|
|
return NULL;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
|
|
|
|
|
return SDL_InitializeSurface(mem, width, height, format, SDL_COLORSPACE_UNKNOWN, 0, pixels, pitch, SDL_FALSE);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2023-10-11 16:59:51 -07:00
|
|
|
SDL_PropertiesID SDL_GetSurfaceProperties(SDL_Surface *surface)
|
|
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2023-10-11 16:59:51 -07:00
|
|
|
SDL_InvalidParamError("surface");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!surface->internal->props) {
|
|
|
|
|
surface->internal->props = SDL_CreateProperties();
|
2023-10-11 16:59:51 -07:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
return surface->internal->props;
|
2023-10-11 16:59:51 -07:00
|
|
|
}
|
|
|
|
|
|
2024-01-31 17:25:25 -08:00
|
|
|
int SDL_SetSurfaceColorspace(SDL_Surface *surface, SDL_Colorspace colorspace)
|
|
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2024-01-31 17:25:25 -08:00
|
|
|
return SDL_InvalidParamError("surface");
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-21 08:43:51 -07:00
|
|
|
surface->internal->colorspace = colorspace;
|
|
|
|
|
return 0;
|
2024-01-31 17:25:25 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_Colorspace SDL_GetSurfaceColorspace(SDL_Surface *surface)
|
2024-01-31 17:25:25 -08:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
|
|
|
|
return SDL_COLORSPACE_UNKNOWN;
|
2024-01-31 17:25:25 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-21 08:43:51 -07:00
|
|
|
return surface->internal->colorspace;
|
2024-01-31 17:25:25 -08:00
|
|
|
}
|
|
|
|
|
|
2024-02-22 14:47:58 -08:00
|
|
|
float SDL_GetDefaultSDRWhitePoint(SDL_Colorspace colorspace)
|
|
|
|
|
{
|
|
|
|
|
return SDL_GetSurfaceSDRWhitePoint(NULL, colorspace);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-19 08:45:02 -08:00
|
|
|
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;
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (SDL_SurfaceValid(surface)) {
|
|
|
|
|
props = surface->internal->props;
|
2024-02-19 08:45:02 -08:00
|
|
|
} else {
|
|
|
|
|
props = 0;
|
|
|
|
|
}
|
|
|
|
|
if (transfer == SDL_TRANSFER_CHARACTERISTICS_PQ) {
|
2024-02-22 14:51:23 -08:00
|
|
|
/* 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;
|
2024-02-19 08:45:02 -08:00
|
|
|
default_value = DEFAULT_PQ_SDR_WHITE_POINT;
|
|
|
|
|
}
|
|
|
|
|
return SDL_GetFloatProperty(props, SDL_PROP_SURFACE_SDR_WHITE_POINT_FLOAT, default_value);
|
|
|
|
|
}
|
|
|
|
|
return 1.0f;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-22 14:47:58 -08:00
|
|
|
float SDL_GetDefaultHDRHeadroom(SDL_Colorspace colorspace)
|
|
|
|
|
{
|
|
|
|
|
return SDL_GetSurfaceHDRHeadroom(NULL, colorspace);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-19 08:45:02 -08:00
|
|
|
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;
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (SDL_SurfaceValid(surface)) {
|
|
|
|
|
props = surface->internal->props;
|
2024-02-19 08:45:02 -08:00
|
|
|
} else {
|
|
|
|
|
props = 0;
|
|
|
|
|
}
|
|
|
|
|
return SDL_GetFloatProperty(props, SDL_PROP_SURFACE_HDR_HEADROOM_FLOAT, default_value);
|
|
|
|
|
}
|
|
|
|
|
return 1.0f;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-13 14:18:35 -07:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-30 12:51:59 -08:00
|
|
|
int SDL_SetSurfacePalette(SDL_Surface *surface, SDL_Palette *palette)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2023-10-11 16:59:51 -07:00
|
|
|
return SDL_InvalidParamError("surface");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
|
|
|
|
|
if (palette && palette->ncolors > (1 << SDL_BITSPERPIXEL(surface->format))) {
|
|
|
|
|
return SDL_SetError("SDL_SetSurfacePalette() passed a palette that doesn't match the surface format");
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-10 23:20:51 -07:00
|
|
|
if (palette != surface->internal->palette) {
|
|
|
|
|
if (surface->internal->palette) {
|
|
|
|
|
SDL_DestroyPalette(surface->internal->palette);
|
|
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
|
2024-07-10 23:20:51 -07:00
|
|
|
surface->internal->palette = palette;
|
2024-07-08 14:59:18 -07:00
|
|
|
|
2024-07-10 23:20:51 -07:00
|
|
|
if (surface->internal->palette) {
|
|
|
|
|
++surface->internal->palette->refcount;
|
|
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
|
|
|
|
|
SDL_InvalidateMap(&surface->internal->map);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
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)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
|
|
|
|
int flags;
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2023-11-07 21:57:15 -08:00
|
|
|
return SDL_InvalidParamError("surface");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
flags = surface->internal->map.info.flags;
|
|
|
|
|
if (enabled) {
|
|
|
|
|
surface->internal->map.info.flags |= SDL_COPY_RLE_DESIRED;
|
2015-06-21 17:33:46 +02:00
|
|
|
} else {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags &= ~SDL_COPY_RLE_DESIRED;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->map.info.flags != flags) {
|
|
|
|
|
SDL_InvalidateMap(&surface->internal->map);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-17 14:03:53 -07:00
|
|
|
SDL_UpdateSurfaceLockFlag(surface);
|
2015-06-21 17:33:46 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-23 11:29:41 -07:00
|
|
|
SDL_bool SDL_SurfaceHasRLE(SDL_Surface *surface)
|
2020-10-18 09:52:56 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2020-10-18 09:52:56 +02:00
|
|
|
return SDL_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!(surface->internal->map.info.flags & SDL_COPY_RLE_DESIRED)) {
|
2020-10-18 09:52:56 +02:00
|
|
|
return SDL_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return SDL_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
int SDL_SetSurfaceColorKey(SDL_Surface *surface, SDL_bool enabled, Uint32 key)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
|
|
|
|
int flags;
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return SDL_InvalidParamError("surface");
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->palette && key >= ((Uint32)surface->internal->palette->ncolors)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return SDL_InvalidParamError("key");
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
flags = surface->internal->map.info.flags;
|
|
|
|
|
if (enabled) {
|
|
|
|
|
surface->internal->map.info.flags |= SDL_COPY_COLORKEY;
|
|
|
|
|
surface->internal->map.info.colorkey = key;
|
2015-06-21 17:33:46 +02:00
|
|
|
} else {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags &= ~SDL_COPY_COLORKEY;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->map.info.flags != flags) {
|
|
|
|
|
SDL_InvalidateMap(&surface->internal->map);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-23 11:29:41 -07:00
|
|
|
SDL_bool SDL_SurfaceHasColorKey(SDL_Surface *surface)
|
2018-09-24 16:41:55 -07:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2018-09-24 16:41:55 -07:00
|
|
|
return SDL_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!(surface->internal->map.info.flags & SDL_COPY_COLORKEY)) {
|
2018-09-24 16:41:55 -07:00
|
|
|
return SDL_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-31 11:45:31 +01:00
|
|
|
return SDL_TRUE;
|
2018-09-24 16:41:55 -07:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 09:40:25 -07:00
|
|
|
int SDL_GetSurfaceColorKey(SDL_Surface *surface, Uint32 *key)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-17 10:10:31 -07:00
|
|
|
if (key) {
|
|
|
|
|
*key = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2024-07-17 09:40:25 -07:00
|
|
|
return SDL_InvalidParamError("surface");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 09:40:25 -07:00
|
|
|
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;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2022-11-30 12:51:59 -08:00
|
|
|
/* This is a fairly slow function to switch from colorkey to alpha
|
2021-02-03 09:32:09 +01:00
|
|
|
NB: it doesn't handle bpp 1 or 3, because they have no alpha channel */
|
2022-11-30 12:51:59 -08:00
|
|
|
static void SDL_ConvertColorkeyToAlpha(SDL_Surface *surface, SDL_bool ignore_alpha)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2021-02-03 09:32:09 +01:00
|
|
|
int x, y, bpp;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!(surface->internal->map.info.flags & SDL_COPY_COLORKEY) ||
|
|
|
|
|
!SDL_ISPIXELFORMAT_ALPHA(surface->format)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
bpp = SDL_BYTESPERPIXEL(surface->format);
|
2021-02-03 09:32:09 +01:00
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_LockSurface(surface);
|
|
|
|
|
|
2021-02-03 09:32:09 +01:00
|
|
|
if (bpp == 2) {
|
|
|
|
|
Uint16 *row, *spot;
|
2024-07-08 14:59:18 -07:00
|
|
|
Uint16 ckey = (Uint16)surface->internal->map.info.colorkey;
|
|
|
|
|
Uint16 mask = (Uint16)(~surface->internal->format->Amask);
|
2021-02-03 09:32:09 +01:00
|
|
|
|
|
|
|
|
/* Ignore, or not, alpha in colorkey comparison */
|
|
|
|
|
if (ignore_alpha) {
|
|
|
|
|
ckey &= mask;
|
2022-11-30 12:51:59 -08:00
|
|
|
row = (Uint16 *)surface->pixels;
|
2021-02-03 09:32:09 +01:00
|
|
|
for (y = surface->h; y--;) {
|
|
|
|
|
spot = row;
|
|
|
|
|
for (x = surface->w; x--;) {
|
|
|
|
|
if ((*spot & mask) == ckey) {
|
|
|
|
|
*spot &= mask;
|
2019-01-21 18:45:15 +01:00
|
|
|
}
|
2021-02-03 09:32:09 +01:00
|
|
|
++spot;
|
2019-01-21 18:45:15 +01:00
|
|
|
}
|
2021-02-03 09:32:09 +01:00
|
|
|
row += surface->pitch / 2;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-11-30 12:51:59 -08:00
|
|
|
row = (Uint16 *)surface->pixels;
|
2021-02-03 09:32:09 +01:00
|
|
|
for (y = surface->h; y--;) {
|
|
|
|
|
spot = row;
|
|
|
|
|
for (x = surface->w; x--;) {
|
|
|
|
|
if (*spot == ckey) {
|
|
|
|
|
*spot &= mask;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2021-02-03 09:32:09 +01:00
|
|
|
++spot;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2021-02-03 09:32:09 +01:00
|
|
|
row += surface->pitch / 2;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
}
|
2021-02-03 09:32:09 +01:00
|
|
|
} else if (bpp == 4) {
|
|
|
|
|
Uint32 *row, *spot;
|
2024-07-08 14:59:18 -07:00
|
|
|
Uint32 ckey = surface->internal->map.info.colorkey;
|
|
|
|
|
Uint32 mask = ~surface->internal->format->Amask;
|
2021-02-03 09:32:09 +01:00
|
|
|
|
|
|
|
|
/* Ignore, or not, alpha in colorkey comparison */
|
|
|
|
|
if (ignore_alpha) {
|
|
|
|
|
ckey &= mask;
|
2022-11-30 12:51:59 -08:00
|
|
|
row = (Uint32 *)surface->pixels;
|
2021-02-03 09:32:09 +01:00
|
|
|
for (y = surface->h; y--;) {
|
|
|
|
|
spot = row;
|
|
|
|
|
for (x = surface->w; x--;) {
|
|
|
|
|
if ((*spot & mask) == ckey) {
|
|
|
|
|
*spot &= mask;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2021-02-03 09:32:09 +01:00
|
|
|
++spot;
|
2019-01-21 18:45:15 +01:00
|
|
|
}
|
2021-02-03 09:32:09 +01:00
|
|
|
row += surface->pitch / 4;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-11-30 12:51:59 -08:00
|
|
|
row = (Uint32 *)surface->pixels;
|
2021-02-03 09:32:09 +01:00
|
|
|
for (y = surface->h; y--;) {
|
|
|
|
|
spot = row;
|
|
|
|
|
for (x = surface->w; x--;) {
|
|
|
|
|
if (*spot == ckey) {
|
|
|
|
|
*spot &= mask;
|
2019-01-21 18:45:15 +01:00
|
|
|
}
|
2021-02-03 09:32:09 +01:00
|
|
|
++spot;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2021-02-03 09:32:09 +01:00
|
|
|
row += surface->pitch / 4;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SDL_UnlockSurface(surface);
|
|
|
|
|
|
2022-12-27 06:36:39 -08:00
|
|
|
SDL_SetSurfaceColorKey(surface, 0, 0);
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_SetSurfaceBlendMode(surface, SDL_BLENDMODE_BLEND);
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-30 12:51:59 -08:00
|
|
|
int SDL_SetSurfaceColorMod(SDL_Surface *surface, Uint8 r, Uint8 g, Uint8 b)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
|
|
|
|
int flags;
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2023-11-07 21:57:15 -08:00
|
|
|
return SDL_InvalidParamError("surface");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.r = r;
|
|
|
|
|
surface->internal->map.info.g = g;
|
|
|
|
|
surface->internal->map.info.b = b;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
flags = surface->internal->map.info.flags;
|
2015-06-21 17:33:46 +02:00
|
|
|
if (r != 0xFF || g != 0xFF || b != 0xFF) {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags |= SDL_COPY_MODULATE_COLOR;
|
2015-06-21 17:33:46 +02:00
|
|
|
} else {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags &= ~SDL_COPY_MODULATE_COLOR;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->map.info.flags != flags) {
|
|
|
|
|
SDL_InvalidateMap(&surface->internal->map);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-30 12:51:59 -08:00
|
|
|
int SDL_GetSurfaceColorMod(SDL_Surface *surface, Uint8 *r, Uint8 *g, Uint8 *b)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2024-07-17 10:10:31 -07:00
|
|
|
if (r) {
|
|
|
|
|
*r = 255;
|
|
|
|
|
}
|
|
|
|
|
if (g) {
|
|
|
|
|
*g = 255;
|
|
|
|
|
}
|
|
|
|
|
if (b) {
|
|
|
|
|
*b = 255;
|
|
|
|
|
}
|
2023-11-07 21:57:15 -08:00
|
|
|
return SDL_InvalidParamError("surface");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (r) {
|
2024-07-08 14:59:18 -07:00
|
|
|
*r = surface->internal->map.info.r;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
if (g) {
|
2024-07-08 14:59:18 -07:00
|
|
|
*g = surface->internal->map.info.g;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
if (b) {
|
2024-07-08 14:59:18 -07:00
|
|
|
*b = surface->internal->map.info.b;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-30 12:51:59 -08:00
|
|
|
int SDL_SetSurfaceAlphaMod(SDL_Surface *surface, Uint8 alpha)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
|
|
|
|
int flags;
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2023-11-07 21:57:15 -08:00
|
|
|
return SDL_InvalidParamError("surface");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.a = alpha;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
flags = surface->internal->map.info.flags;
|
2015-06-21 17:33:46 +02:00
|
|
|
if (alpha != 0xFF) {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags |= SDL_COPY_MODULATE_ALPHA;
|
2015-06-21 17:33:46 +02:00
|
|
|
} else {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags &= ~SDL_COPY_MODULATE_ALPHA;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->map.info.flags != flags) {
|
|
|
|
|
SDL_InvalidateMap(&surface->internal->map);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-30 12:51:59 -08:00
|
|
|
int SDL_GetSurfaceAlphaMod(SDL_Surface *surface, Uint8 *alpha)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2024-07-17 10:10:31 -07:00
|
|
|
if (alpha) {
|
|
|
|
|
*alpha = 255;
|
|
|
|
|
}
|
2023-11-07 21:57:15 -08:00
|
|
|
return SDL_InvalidParamError("surface");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (alpha) {
|
2024-07-08 14:59:18 -07:00
|
|
|
*alpha = surface->internal->map.info.a;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-30 12:51:59 -08:00
|
|
|
int SDL_SetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode blendMode)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
|
|
|
|
int flags, status;
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2023-11-07 21:57:15 -08:00
|
|
|
return SDL_InvalidParamError("surface");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-16 21:15:56 -07:00
|
|
|
if (blendMode == SDL_BLENDMODE_INVALID) {
|
|
|
|
|
return SDL_InvalidParamError("blendMode");
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
status = 0;
|
2024-07-08 14:59:18 -07:00
|
|
|
flags = surface->internal->map.info.flags;
|
2024-08-01 11:24:54 -07:00
|
|
|
surface->internal->map.info.flags &= ~SDL_COPY_BLEND_MASK;
|
2015-06-21 17:33:46 +02:00
|
|
|
switch (blendMode) {
|
|
|
|
|
case SDL_BLENDMODE_NONE:
|
|
|
|
|
break;
|
|
|
|
|
case SDL_BLENDMODE_BLEND:
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags |= SDL_COPY_BLEND;
|
2015-06-21 17:33:46 +02:00
|
|
|
break;
|
2024-07-15 08:27:58 -07:00
|
|
|
case SDL_BLENDMODE_BLEND_PREMULTIPLIED:
|
|
|
|
|
surface->internal->map.info.flags |= SDL_COPY_BLEND_PREMULTIPLIED;
|
|
|
|
|
break;
|
2015-06-21 17:33:46 +02:00
|
|
|
case SDL_BLENDMODE_ADD:
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags |= SDL_COPY_ADD;
|
2015-06-21 17:33:46 +02:00
|
|
|
break;
|
2024-07-15 08:27:58 -07:00
|
|
|
case SDL_BLENDMODE_ADD_PREMULTIPLIED:
|
|
|
|
|
surface->internal->map.info.flags |= SDL_COPY_ADD_PREMULTIPLIED;
|
|
|
|
|
break;
|
2015-06-21 17:33:46 +02:00
|
|
|
case SDL_BLENDMODE_MOD:
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags |= SDL_COPY_MOD;
|
2015-06-21 17:33:46 +02:00
|
|
|
break;
|
2020-01-16 08:52:59 -08:00
|
|
|
case SDL_BLENDMODE_MUL:
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->map.info.flags |= SDL_COPY_MUL;
|
2020-01-16 08:52:59 -08:00
|
|
|
break;
|
2015-06-21 17:33:46 +02:00
|
|
|
default:
|
|
|
|
|
status = SDL_Unsupported();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->map.info.flags != flags) {
|
|
|
|
|
SDL_InvalidateMap(&surface->internal->map);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-17 09:40:25 -07:00
|
|
|
int SDL_GetSurfaceBlendMode(SDL_Surface *surface, SDL_BlendMode *blendMode)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-17 10:10:31 -07:00
|
|
|
if (blendMode) {
|
|
|
|
|
*blendMode = SDL_BLENDMODE_INVALID;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-16 21:15:56 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2024-07-17 09:40:25 -07:00
|
|
|
return SDL_InvalidParamError("surface");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!blendMode) {
|
|
|
|
|
return 0;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-08-01 11:24:54 -07:00
|
|
|
switch (surface->internal->map.info.flags & SDL_COPY_BLEND_MASK) {
|
2015-06-21 17:33:46 +02:00
|
|
|
case SDL_COPY_BLEND:
|
2024-07-17 09:40:25 -07:00
|
|
|
*blendMode = SDL_BLENDMODE_BLEND;
|
2015-06-21 17:33:46 +02:00
|
|
|
break;
|
2024-07-15 08:27:58 -07:00
|
|
|
case SDL_COPY_BLEND_PREMULTIPLIED:
|
2024-07-17 09:40:25 -07:00
|
|
|
*blendMode = SDL_BLENDMODE_BLEND_PREMULTIPLIED;
|
2024-07-15 08:27:58 -07:00
|
|
|
break;
|
2015-06-21 17:33:46 +02:00
|
|
|
case SDL_COPY_ADD:
|
2024-07-17 09:40:25 -07:00
|
|
|
*blendMode = SDL_BLENDMODE_ADD;
|
2015-06-21 17:33:46 +02:00
|
|
|
break;
|
2024-07-15 08:27:58 -07:00
|
|
|
case SDL_COPY_ADD_PREMULTIPLIED:
|
2024-07-17 09:40:25 -07:00
|
|
|
*blendMode = SDL_BLENDMODE_ADD_PREMULTIPLIED;
|
2024-07-15 08:27:58 -07:00
|
|
|
break;
|
2015-06-21 17:33:46 +02:00
|
|
|
case SDL_COPY_MOD:
|
2024-07-17 09:40:25 -07:00
|
|
|
*blendMode = SDL_BLENDMODE_MOD;
|
2015-06-21 17:33:46 +02:00
|
|
|
break;
|
2020-01-16 08:52:59 -08:00
|
|
|
case SDL_COPY_MUL:
|
2024-07-17 09:40:25 -07:00
|
|
|
*blendMode = SDL_BLENDMODE_MUL;
|
2020-01-16 08:52:59 -08:00
|
|
|
break;
|
2015-06-21 17:33:46 +02:00
|
|
|
default:
|
2024-07-17 09:40:25 -07:00
|
|
|
*blendMode = SDL_BLENDMODE_NONE;
|
2015-06-21 17:33:46 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2024-07-17 09:40:25 -07:00
|
|
|
return 0;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2023-05-23 11:29:41 -07:00
|
|
|
SDL_bool SDL_SetSurfaceClipRect(SDL_Surface *surface, const SDL_Rect *rect)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
|
|
|
|
SDL_Rect full_rect;
|
|
|
|
|
|
|
|
|
|
/* Don't do anything if there's no surface to act on */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
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 */
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!rect) {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->clip_rect = full_rect;
|
2015-06-21 17:33:46 +02:00
|
|
|
return SDL_TRUE;
|
|
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
return SDL_GetRectIntersection(rect, &full_rect, &surface->internal->clip_rect);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2023-02-08 20:43:52 +01:00
|
|
|
int SDL_GetSurfaceClipRect(SDL_Surface *surface, SDL_Rect *rect)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2024-07-17 10:10:31 -07:00
|
|
|
if (rect) {
|
|
|
|
|
SDL_zerop(rect);
|
|
|
|
|
}
|
2023-02-08 20:43:52 +01:00
|
|
|
return SDL_InvalidParamError("surface");
|
|
|
|
|
}
|
|
|
|
|
if (!rect) {
|
|
|
|
|
return SDL_InvalidParamError("rect");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
*rect = surface->internal->clip_rect;
|
2023-02-08 20:43:52 +01:00
|
|
|
return 0;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Set up a blit between two surfaces -- split into three parts:
|
2022-12-27 06:36:39 -08:00
|
|
|
* The upper part, SDL_BlitSurface(), performs clipping and rectangle
|
2015-06-21 17:33:46 +02:00
|
|
|
* 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
|
Fix remaining typos (#7921)
* Fix remaining typos
Found via `codespell -q 3 -S *.hex,*.pdf,./src/libm,./src/hidapi,./src/stdlib/SDL_malloc.c,./src/video/x11/edid.h -L caf,currenty,datas,einstance,fo,hda,lod,mata,parm,parms,pevent,pevents,pixelx,requestor,ser,statics,te,texturers,thid,uscaled,windowz`
2023-07-03 15:46:47 -04:00
|
|
|
* library in the optimum places. They are exported so that if
|
2015-06-21 17:33:46 +02:00
|
|
|
* you know exactly what you are doing, you can optimize your code
|
|
|
|
|
* by calling the one(s) you need.
|
|
|
|
|
*/
|
2023-07-02 18:45:11 -07:00
|
|
|
int SDL_BlitSurfaceUnchecked(SDL_Surface *src, const SDL_Rect *srcrect,
|
|
|
|
|
SDL_Surface *dst, const SDL_Rect *dstrect)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
|
|
|
|
/* Check to make sure the blit mapping is valid */
|
2024-07-21 10:31:48 -07:00
|
|
|
if (SDL_ValidateMap(src, dst) < 0) {
|
|
|
|
|
return -1;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
return src->internal->map.blit(src, srcrect, dst, dstrect);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2022-12-27 06:36:39 -08:00
|
|
|
int SDL_BlitSurface(SDL_Surface *src, const SDL_Rect *srcrect,
|
2024-07-20 15:41:53 -07:00
|
|
|
SDL_Surface *dst, const SDL_Rect *dstrect)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-01-19 17:39:57 +01:00
|
|
|
SDL_Rect r_src, r_dst;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
/* Make sure the surfaces aren't locked */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(src)) {
|
2024-01-19 17:39:57 +01:00
|
|
|
return SDL_InvalidParamError("src");
|
2024-07-08 14:59:18 -07:00
|
|
|
} else if (!SDL_SurfaceValid(dst)) {
|
2024-01-19 17:39:57 +01:00
|
|
|
return SDL_InvalidParamError("dst");
|
2024-07-08 14:59:18 -07:00
|
|
|
} else if ((src->flags & SDL_SURFACE_LOCKED) || (dst->flags & SDL_SURFACE_LOCKED)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return SDL_SetError("Surfaces must not be locked during blit");
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-19 17:39:57 +01:00
|
|
|
/* 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;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* clip the source rectangle to the source surface */
|
|
|
|
|
if (srcrect) {
|
2024-01-19 17:39:57 +01:00
|
|
|
SDL_Rect tmp;
|
|
|
|
|
if (SDL_GetRectIntersection(srcrect, &r_src, &tmp) == SDL_FALSE) {
|
2024-07-20 15:41:53 -07:00
|
|
|
return 0;
|
2022-11-27 17:38:43 +01:00
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-01-19 17:39:57 +01:00
|
|
|
/* Shift dstrect, if srcrect origin has changed */
|
|
|
|
|
r_dst.x += tmp.x - srcrect->x;
|
|
|
|
|
r_dst.y += tmp.y - srcrect->y;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-01-19 17:39:57 +01:00
|
|
|
/* Update srcrect */
|
|
|
|
|
r_src = tmp;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-19 17:39:57 +01:00
|
|
|
/* 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;
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/* clip the destination rectangle against the clip rectangle */
|
|
|
|
|
{
|
2024-01-19 17:39:57 +01:00
|
|
|
SDL_Rect tmp;
|
2024-07-08 14:59:18 -07:00
|
|
|
if (SDL_GetRectIntersection(&r_dst, &dst->internal->clip_rect, &tmp) == SDL_FALSE) {
|
2024-07-20 15:41:53 -07:00
|
|
|
return 0;
|
2022-11-27 17:38:43 +01:00
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-01-19 17:39:57 +01:00
|
|
|
/* 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;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-20 15:41:53 -07:00
|
|
|
if (r_dst.w <= 0 || r_dst.h <= 0) {
|
|
|
|
|
/* No-op. */
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-20 21:17:15 -07:00
|
|
|
/* 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);
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-20 15:41:53 -07:00
|
|
|
return SDL_BlitSurfaceUnchecked(src, &r_src, dst, &r_dst);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2022-12-27 06:36:39 -08:00
|
|
|
int SDL_BlitSurfaceScaled(SDL_Surface *src, const SDL_Rect *srcrect,
|
2024-07-20 15:41:53 -07:00
|
|
|
SDL_Surface *dst, const SDL_Rect *dstrect,
|
2023-12-22 10:28:17 +01:00
|
|
|
SDL_ScaleMode scaleMode)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_Rect *clip_rect;
|
2015-06-21 17:33:46 +02:00
|
|
|
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 */
|
2024-07-08 14:59:18 -07:00
|
|
|
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)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return SDL_SetError("Surfaces must not be locked during blit");
|
2024-07-20 18:51:42 -07:00
|
|
|
} else if (scaleMode != SDL_SCALEMODE_NEAREST &&
|
|
|
|
|
scaleMode != SDL_SCALEMODE_LINEAR &&
|
|
|
|
|
scaleMode != SDL_SCALEMODE_BEST) {
|
|
|
|
|
return SDL_InvalidParamError("scaleMode");
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!srcrect) {
|
2015-06-21 17:33:46 +02:00
|
|
|
src_w = src->w;
|
|
|
|
|
src_h = src->h;
|
|
|
|
|
} else {
|
|
|
|
|
src_w = srcrect->w;
|
|
|
|
|
src_h = srcrect->h;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!dstrect) {
|
2015-06-21 17:33:46 +02:00
|
|
|
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;
|
|
|
|
|
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!dstrect) {
|
2015-06-21 17:33:46 +02:00
|
|
|
dst_x0 = 0;
|
|
|
|
|
dst_y0 = 0;
|
2020-12-30 22:03:32 +01:00
|
|
|
dst_x1 = dst_w;
|
|
|
|
|
dst_y1 = dst_h;
|
2015-06-21 17:33:46 +02:00
|
|
|
} else {
|
|
|
|
|
dst_x0 = dstrect->x;
|
|
|
|
|
dst_y0 = dstrect->y;
|
2020-12-30 22:03:32 +01:00
|
|
|
dst_x1 = dst_x0 + dst_w;
|
|
|
|
|
dst_y1 = dst_y0 + dst_h;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!srcrect) {
|
2015-06-21 17:33:46 +02:00
|
|
|
src_x0 = 0;
|
|
|
|
|
src_y0 = 0;
|
2020-12-30 22:03:32 +01:00
|
|
|
src_x1 = src_w;
|
|
|
|
|
src_y1 = src_h;
|
2015-06-21 17:33:46 +02:00
|
|
|
} else {
|
|
|
|
|
src_x0 = srcrect->x;
|
|
|
|
|
src_y0 = srcrect->y;
|
2020-12-30 22:03:32 +01:00
|
|
|
src_x1 = src_x0 + src_w;
|
|
|
|
|
src_y1 = src_y0 + src_h;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
/* Clip source rectangle to the source surface */
|
|
|
|
|
|
|
|
|
|
if (src_x0 < 0) {
|
|
|
|
|
dst_x0 -= src_x0 * scaling_w;
|
|
|
|
|
src_x0 = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-30 22:03:32 +01:00
|
|
|
if (src_x1 > src->w) {
|
|
|
|
|
dst_x1 -= (src_x1 - src->w) * scaling_w;
|
|
|
|
|
src_x1 = src->w;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (src_y0 < 0) {
|
|
|
|
|
dst_y0 -= src_y0 * scaling_h;
|
|
|
|
|
src_y0 = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-30 22:03:32 +01:00
|
|
|
if (src_y1 > src->h) {
|
|
|
|
|
dst_y1 -= (src_y1 - src->h) * scaling_h;
|
|
|
|
|
src_y1 = src->h;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Clip destination rectangle to the clip rectangle */
|
2024-07-08 14:59:18 -07:00
|
|
|
clip_rect = &dst->internal->clip_rect;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
/* Translate to clip space for easier calculations */
|
2024-07-08 14:59:18 -07:00
|
|
|
dst_x0 -= clip_rect->x;
|
|
|
|
|
dst_x1 -= clip_rect->x;
|
|
|
|
|
dst_y0 -= clip_rect->y;
|
|
|
|
|
dst_y1 -= clip_rect->y;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
if (dst_x0 < 0) {
|
|
|
|
|
src_x0 -= dst_x0 / scaling_w;
|
|
|
|
|
dst_x0 = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (dst_x1 > clip_rect->w) {
|
|
|
|
|
src_x1 -= (dst_x1 - clip_rect->w) / scaling_w;
|
|
|
|
|
dst_x1 = clip_rect->w;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (dst_y0 < 0) {
|
|
|
|
|
src_y0 -= dst_y0 / scaling_h;
|
|
|
|
|
dst_y0 = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (dst_y1 > clip_rect->h) {
|
|
|
|
|
src_y1 -= (dst_y1 - clip_rect->h) / scaling_h;
|
|
|
|
|
dst_y1 = clip_rect->h;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Translate back to surface coordinates */
|
2024-07-08 14:59:18 -07:00
|
|
|
dst_x0 += clip_rect->x;
|
|
|
|
|
dst_x1 += clip_rect->x;
|
|
|
|
|
dst_y0 += clip_rect->y;
|
|
|
|
|
dst_y1 += clip_rect->y;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2021-01-02 09:38:19 +01:00
|
|
|
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;
|
2022-12-27 11:01:11 -08:00
|
|
|
SDL_GetRectIntersection(&tmp, &final_src, &final_src);
|
2021-01-02 09:38:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Clip again */
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_GetRectIntersection(clip_rect, &final_dst, &final_dst);
|
2021-01-02 09:38:19 +01:00
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
if (final_dst.w == 0 || final_dst.h == 0 ||
|
|
|
|
|
final_src.w <= 0 || final_src.h <= 0) {
|
|
|
|
|
/* No-op. */
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-22 10:28:17 +01:00
|
|
|
return SDL_BlitSurfaceUncheckedScaled(src, &final_src, dst, &final_dst, scaleMode);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This is a semi-private blit function and it performs low-level surface
|
|
|
|
|
* scaled blitting only.
|
|
|
|
|
*/
|
2023-07-02 18:45:11 -07:00
|
|
|
int SDL_BlitSurfaceUncheckedScaled(SDL_Surface *src, const SDL_Rect *srcrect,
|
2023-12-22 10:28:17 +01:00
|
|
|
SDL_Surface *dst, const SDL_Rect *dstrect,
|
|
|
|
|
SDL_ScaleMode scaleMode)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-08-01 11:24:54 -07:00
|
|
|
static const Uint32 complex_copy_flags = (SDL_COPY_MODULATE_MASK | SDL_COPY_BLEND_MASK | SDL_COPY_COLORKEY);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-07-20 18:53:31 -07:00
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!(src->internal->map.info.flags & SDL_COPY_NEAREST)) {
|
|
|
|
|
src->internal->map.info.flags |= SDL_COPY_NEAREST;
|
|
|
|
|
SDL_InvalidateMap(&src->internal->map);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2023-02-03 13:23:02 -08:00
|
|
|
if (scaleMode == SDL_SCALEMODE_NEAREST) {
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!(src->internal->map.info.flags & complex_copy_flags) &&
|
|
|
|
|
src->format == dst->format &&
|
|
|
|
|
!SDL_ISPIXELFORMAT_INDEXED(src->format)) {
|
2023-12-22 15:02:43 +01:00
|
|
|
return SDL_SoftStretch(src, srcrect, dst, dstrect, SDL_SCALEMODE_NEAREST);
|
2020-12-27 23:00:11 +01:00
|
|
|
} else {
|
2022-12-27 06:36:39 -08:00
|
|
|
return SDL_BlitSurfaceUnchecked(src, srcrect, dst, dstrect);
|
2020-12-27 20:28:24 +01:00
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
} else {
|
2024-07-08 14:59:18 -07:00
|
|
|
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) {
|
2020-12-27 23:00:11 +01:00
|
|
|
/* fast path */
|
2023-12-22 15:02:43 +01:00
|
|
|
return SDL_SoftStretch(src, srcrect, dst, dstrect, SDL_SCALEMODE_LINEAR);
|
2020-12-27 23:00:11 +01:00
|
|
|
} else {
|
2020-12-27 23:53:28 +01:00
|
|
|
/* Use intermediate surface(s) */
|
|
|
|
|
SDL_Surface *tmp1 = NULL;
|
2020-12-27 23:00:11 +01:00
|
|
|
int ret;
|
2020-12-27 23:53:28 +01:00
|
|
|
SDL_Rect srcrect2;
|
2024-07-08 14:59:18 -07:00
|
|
|
int is_complex_copy_flags = (src->internal->map.info.flags & complex_copy_flags);
|
2020-12-27 23:53:28 +01:00
|
|
|
|
2020-12-28 01:10:02 +03:00
|
|
|
Uint8 r, g, b;
|
2020-12-27 23:00:11 +01:00
|
|
|
Uint8 alpha;
|
|
|
|
|
SDL_BlendMode blendMode;
|
|
|
|
|
|
2020-12-27 23:53:28 +01:00
|
|
|
/* Save source infos */
|
2020-12-27 23:00:11 +01:00
|
|
|
SDL_GetSurfaceColorMod(src, &r, &g, &b);
|
|
|
|
|
SDL_GetSurfaceAlphaMod(src, &alpha);
|
2024-07-17 09:40:25 -07:00
|
|
|
SDL_GetSurfaceBlendMode(src, &blendMode);
|
2020-12-27 23:53:28 +01:00
|
|
|
srcrect2.x = srcrect->x;
|
|
|
|
|
srcrect2.y = srcrect->y;
|
|
|
|
|
srcrect2.w = srcrect->w;
|
|
|
|
|
srcrect2.h = srcrect->h;
|
|
|
|
|
|
|
|
|
|
/* Change source format if not appropriate for scaling */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (SDL_BYTESPERPIXEL(src->format) != 4 || src->format == SDL_PIXELFORMAT_ARGB2101010) {
|
2020-12-27 23:53:28 +01:00
|
|
|
SDL_Rect tmprect;
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_PixelFormat fmt;
|
2020-12-27 23:53:28 +01:00
|
|
|
tmprect.x = 0;
|
|
|
|
|
tmprect.y = 0;
|
|
|
|
|
tmprect.w = src->w;
|
|
|
|
|
tmprect.h = src->h;
|
2024-07-08 14:59:18 -07:00
|
|
|
if (SDL_BYTESPERPIXEL(dst->format) == 4 && dst->format != SDL_PIXELFORMAT_ARGB2101010) {
|
|
|
|
|
fmt = dst->format;
|
2020-12-27 23:53:28 +01:00
|
|
|
} else {
|
2020-12-28 10:41:37 +01:00
|
|
|
fmt = SDL_PIXELFORMAT_ARGB8888;
|
2020-12-27 23:53:28 +01:00
|
|
|
}
|
2022-12-01 17:04:02 +01:00
|
|
|
tmp1 = SDL_CreateSurface(src->w, src->h, fmt);
|
2022-12-27 06:36:39 -08:00
|
|
|
SDL_BlitSurfaceUnchecked(src, srcrect, tmp1, &tmprect);
|
2020-12-27 23:53:28 +01:00
|
|
|
|
|
|
|
|
srcrect2.x = 0;
|
|
|
|
|
srcrect2.y = 0;
|
|
|
|
|
SDL_SetSurfaceColorMod(tmp1, r, g, b);
|
|
|
|
|
SDL_SetSurfaceAlphaMod(tmp1, alpha);
|
|
|
|
|
SDL_SetSurfaceBlendMode(tmp1, blendMode);
|
2020-12-28 10:41:37 +01:00
|
|
|
|
2020-12-27 23:53:28 +01:00
|
|
|
src = tmp1;
|
|
|
|
|
}
|
2020-12-27 23:00:11 +01:00
|
|
|
|
2020-12-27 23:53:28 +01:00
|
|
|
/* Intermediate scaling */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (is_complex_copy_flags || src->format != dst->format) {
|
2020-12-27 23:53:28 +01:00
|
|
|
SDL_Rect tmprect;
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_Surface *tmp2 = SDL_CreateSurface(dstrect->w, dstrect->h, src->format);
|
2023-12-22 15:02:43 +01:00
|
|
|
SDL_SoftStretch(src, &srcrect2, tmp2, NULL, SDL_SCALEMODE_LINEAR);
|
2020-12-27 23:53:28 +01:00
|
|
|
|
|
|
|
|
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;
|
2022-12-27 06:36:39 -08:00
|
|
|
ret = SDL_BlitSurfaceUnchecked(tmp2, &tmprect, dst, dstrect);
|
|
|
|
|
SDL_DestroySurface(tmp2);
|
2020-12-27 23:53:28 +01:00
|
|
|
} else {
|
2023-12-22 15:02:43 +01:00
|
|
|
ret = SDL_SoftStretch(src, &srcrect2, dst, dstrect, SDL_SCALEMODE_LINEAR);
|
2020-12-27 23:53:28 +01:00
|
|
|
}
|
2020-12-28 10:41:37 +01:00
|
|
|
|
2022-12-27 06:36:39 -08:00
|
|
|
SDL_DestroySurface(tmp1);
|
2020-12-27 23:00:11 +01:00
|
|
|
return ret;
|
|
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-20 11:53:36 -07:00
|
|
|
int SDL_BlitSurfaceTiled(SDL_Surface *src, const SDL_Rect *srcrect, SDL_Surface *dst, const 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;
|
|
|
|
|
r_dst.w = dstrect->w;
|
|
|
|
|
r_dst.h = dstrect->h;
|
|
|
|
|
} else {
|
|
|
|
|
r_dst.x = 0;
|
|
|
|
|
r_dst.y = 0;
|
|
|
|
|
r_dst.w = dst->w;
|
|
|
|
|
r_dst.h = dst->h;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* clip the source rectangle to the source surface */
|
|
|
|
|
if (srcrect) {
|
|
|
|
|
if (SDL_GetRectIntersection(srcrect, &r_src, &r_src) == SDL_FALSE) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For tiling we don't adjust the destination rectangle */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* clip the destination rectangle against the clip rectangle */
|
|
|
|
|
{
|
|
|
|
|
if (SDL_GetRectIntersection(&r_dst, &dst->internal->clip_rect, &r_dst) == SDL_FALSE) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For tiling we don't adjust the source rectangle */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int rows = r_dst.h / r_src.h;
|
|
|
|
|
int cols = r_dst.w / r_src.w;
|
|
|
|
|
int remaining_w = r_dst.w % r_src.w;
|
|
|
|
|
int remaining_h = r_dst.h % r_src.h;
|
|
|
|
|
SDL_Rect curr_src, curr_dst;
|
|
|
|
|
|
|
|
|
|
SDL_copyp(&curr_src, &r_src);
|
|
|
|
|
curr_dst.y = r_dst.y;
|
|
|
|
|
curr_dst.w = r_src.w;
|
|
|
|
|
curr_dst.h = r_src.h;
|
|
|
|
|
for (int y = 0; y < rows; ++y) {
|
|
|
|
|
curr_dst.x = r_dst.x;
|
|
|
|
|
for (int x = 0; x < cols; ++x) {
|
|
|
|
|
if (SDL_BlitSurfaceUnchecked(src, &curr_src, dst, &curr_dst) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
curr_dst.x += curr_dst.w;
|
|
|
|
|
}
|
|
|
|
|
if (remaining_w) {
|
|
|
|
|
curr_src.w = remaining_w;
|
|
|
|
|
curr_dst.w = remaining_w;
|
|
|
|
|
if (SDL_BlitSurfaceUnchecked(src, &curr_src, dst, &curr_dst) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
curr_src.w = r_src.w;
|
|
|
|
|
curr_dst.w = r_src.w;
|
|
|
|
|
}
|
|
|
|
|
curr_dst.y += curr_dst.h;
|
|
|
|
|
}
|
|
|
|
|
if (remaining_h) {
|
|
|
|
|
curr_src.h = remaining_h;
|
|
|
|
|
curr_dst.h = remaining_h;
|
|
|
|
|
curr_dst.x = r_dst.x;
|
|
|
|
|
for (int x = 0; x < cols; ++x) {
|
|
|
|
|
if (SDL_BlitSurfaceUnchecked(src, &curr_src, dst, &curr_dst) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
curr_dst.x += curr_dst.w;
|
|
|
|
|
}
|
|
|
|
|
if (remaining_w) {
|
|
|
|
|
curr_src.w = remaining_w;
|
|
|
|
|
curr_dst.w = remaining_w;
|
|
|
|
|
if (SDL_BlitSurfaceUnchecked(src, &curr_src, dst, &curr_dst) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-20 14:37:49 -07:00
|
|
|
int SDL_BlitSurfaceTiledWithScale(SDL_Surface *src, const SDL_Rect *srcrect, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const 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");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (scale <= 0.0f) {
|
|
|
|
|
return SDL_InvalidParamError("scale");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
r_dst.w = dstrect->w;
|
|
|
|
|
r_dst.h = dstrect->h;
|
|
|
|
|
} else {
|
|
|
|
|
r_dst.x = 0;
|
|
|
|
|
r_dst.y = 0;
|
|
|
|
|
r_dst.w = dst->w;
|
|
|
|
|
r_dst.h = dst->h;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* clip the source rectangle to the source surface */
|
|
|
|
|
if (srcrect) {
|
|
|
|
|
if (SDL_GetRectIntersection(srcrect, &r_src, &r_src) == SDL_FALSE) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For tiling we don't adjust the destination rectangle */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* clip the destination rectangle against the clip rectangle */
|
|
|
|
|
{
|
|
|
|
|
if (SDL_GetRectIntersection(&r_dst, &dst->internal->clip_rect, &r_dst) == SDL_FALSE) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* For tiling we don't adjust the source rectangle */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int tile_width = (int)(r_src.w * scale);
|
|
|
|
|
int tile_height = (int)(r_src.h * scale);
|
|
|
|
|
int rows = r_dst.h / tile_height;
|
|
|
|
|
int cols = r_dst.w / tile_width;
|
|
|
|
|
int remaining_dst_w = (r_dst.w - cols * tile_width);
|
|
|
|
|
int remaining_dst_h = (r_dst.h - rows * tile_height);
|
|
|
|
|
int remaining_src_w = (int)(remaining_dst_w / scale);
|
|
|
|
|
int remaining_src_h = (int)(remaining_dst_h / scale);
|
|
|
|
|
SDL_Rect curr_src, curr_dst;
|
|
|
|
|
|
|
|
|
|
SDL_copyp(&curr_src, &r_src);
|
|
|
|
|
curr_dst.y = r_dst.y;
|
|
|
|
|
curr_dst.w = tile_width;
|
|
|
|
|
curr_dst.h = tile_height;
|
|
|
|
|
for (int y = 0; y < rows; ++y) {
|
|
|
|
|
curr_dst.x = r_dst.x;
|
|
|
|
|
for (int x = 0; x < cols; ++x) {
|
|
|
|
|
if (SDL_BlitSurfaceUncheckedScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
curr_dst.x += curr_dst.w;
|
|
|
|
|
}
|
|
|
|
|
if (remaining_dst_w > 0) {
|
|
|
|
|
curr_src.w = remaining_src_w;
|
|
|
|
|
curr_dst.w = remaining_dst_w;
|
|
|
|
|
if (SDL_BlitSurfaceUncheckedScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
curr_src.w = r_src.w;
|
|
|
|
|
curr_dst.w = tile_width;
|
|
|
|
|
}
|
|
|
|
|
curr_dst.y += curr_dst.h;
|
|
|
|
|
}
|
|
|
|
|
if (remaining_dst_h > 0) {
|
|
|
|
|
curr_src.h = remaining_src_h;
|
|
|
|
|
curr_dst.h = remaining_dst_h;
|
|
|
|
|
curr_dst.x = r_dst.x;
|
|
|
|
|
for (int x = 0; x < cols; ++x) {
|
|
|
|
|
if (SDL_BlitSurfaceUncheckedScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
curr_dst.x += curr_dst.w;
|
|
|
|
|
}
|
|
|
|
|
if (remaining_dst_w > 0) {
|
|
|
|
|
curr_src.w = remaining_src_w;
|
|
|
|
|
curr_dst.w = remaining_dst_w;
|
|
|
|
|
if (SDL_BlitSurfaceUncheckedScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-31 22:09:42 -07:00
|
|
|
int SDL_BlitSurface9Grid(SDL_Surface *src, const SDL_Rect *srcrect, int left_width, int right_width, int top_height, int bottom_height, float scale, SDL_ScaleMode scaleMode, SDL_Surface *dst, const SDL_Rect *dstrect)
|
2024-07-20 16:39:09 -07:00
|
|
|
{
|
|
|
|
|
SDL_Rect full_src, full_dst;
|
|
|
|
|
SDL_Rect curr_src, curr_dst;
|
2024-07-31 22:09:42 -07:00
|
|
|
int dst_left_width;
|
|
|
|
|
int dst_right_width;
|
|
|
|
|
int dst_top_height;
|
|
|
|
|
int dst_bottom_height;
|
2024-07-20 16:39:09 -07:00
|
|
|
|
|
|
|
|
/* Make sure the surfaces aren't locked */
|
|
|
|
|
if (!SDL_SurfaceValid(src)) {
|
|
|
|
|
return SDL_InvalidParamError("src");
|
|
|
|
|
} else if (!SDL_SurfaceValid(dst)) {
|
|
|
|
|
return SDL_InvalidParamError("dst");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!srcrect) {
|
|
|
|
|
full_src.x = 0;
|
|
|
|
|
full_src.y = 0;
|
|
|
|
|
full_src.w = src->w;
|
|
|
|
|
full_src.h = src->h;
|
|
|
|
|
srcrect = &full_src;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!dstrect) {
|
|
|
|
|
full_dst.x = 0;
|
|
|
|
|
full_dst.y = 0;
|
|
|
|
|
full_dst.w = dst->w;
|
|
|
|
|
full_dst.h = dst->h;
|
|
|
|
|
dstrect = &full_dst;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (scale <= 0.0f || scale == 1.0f) {
|
2024-07-31 22:09:42 -07:00
|
|
|
dst_left_width = left_width;
|
|
|
|
|
dst_right_width = right_width;
|
|
|
|
|
dst_top_height = top_height;
|
|
|
|
|
dst_bottom_height = bottom_height;
|
2024-07-20 16:39:09 -07:00
|
|
|
} else {
|
2024-07-31 22:09:42 -07:00
|
|
|
dst_left_width = (int)SDL_roundf(left_width * scale);
|
|
|
|
|
dst_right_width = (int)SDL_roundf(right_width * scale);
|
|
|
|
|
dst_top_height = (int)SDL_roundf(top_height * scale);
|
|
|
|
|
dst_bottom_height = (int)SDL_roundf(bottom_height * scale);
|
2024-07-20 16:39:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Upper-left corner
|
|
|
|
|
curr_src.x = srcrect->x;
|
|
|
|
|
curr_src.y = srcrect->y;
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.w = left_width;
|
|
|
|
|
curr_src.h = top_height;
|
2024-07-20 16:39:09 -07:00
|
|
|
curr_dst.x = dstrect->x;
|
|
|
|
|
curr_dst.y = dstrect->y;
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_dst.w = dst_left_width;
|
|
|
|
|
curr_dst.h = dst_top_height;
|
2024-07-20 16:39:09 -07:00
|
|
|
if (SDL_BlitSurfaceScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Upper-right corner
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.x = srcrect->x + srcrect->w - right_width;
|
|
|
|
|
curr_src.w = right_width;
|
|
|
|
|
curr_dst.x = dstrect->x + dstrect->w - dst_right_width;
|
|
|
|
|
curr_dst.w = dst_right_width;
|
2024-07-20 16:39:09 -07:00
|
|
|
if (SDL_BlitSurfaceScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lower-right corner
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.y = srcrect->y + srcrect->h - bottom_height;
|
|
|
|
|
curr_dst.y = dstrect->y + dstrect->h - dst_bottom_height;
|
|
|
|
|
curr_dst.h = dst_bottom_height;
|
2024-07-20 16:39:09 -07:00
|
|
|
if (SDL_BlitSurfaceScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lower-left corner
|
|
|
|
|
curr_src.x = srcrect->x;
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.w = left_width;
|
2024-07-20 16:39:09 -07:00
|
|
|
curr_dst.x = dstrect->x;
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_dst.w = dst_left_width;
|
2024-07-20 16:39:09 -07:00
|
|
|
if (SDL_BlitSurfaceScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Left
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.y = srcrect->y + top_height;
|
|
|
|
|
curr_src.h = srcrect->h - top_height - bottom_height;
|
|
|
|
|
curr_dst.y = dstrect->y + dst_top_height;
|
|
|
|
|
curr_dst.h = dstrect->h - dst_top_height - dst_bottom_height;
|
2024-07-20 16:39:09 -07:00
|
|
|
if (SDL_BlitSurfaceScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Right
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.x = srcrect->x + srcrect->w - right_width;
|
|
|
|
|
curr_src.w = right_width;
|
|
|
|
|
curr_dst.x = dstrect->x + dstrect->w - dst_right_width;
|
|
|
|
|
curr_dst.w = dst_right_width;
|
2024-07-20 16:39:09 -07:00
|
|
|
if (SDL_BlitSurfaceScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Top
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.x = srcrect->x + left_width;
|
2024-07-20 16:39:09 -07:00
|
|
|
curr_src.y = srcrect->y;
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.w = srcrect->w - left_width - right_width;
|
|
|
|
|
curr_src.h = top_height;
|
|
|
|
|
curr_dst.x = dstrect->x + dst_left_width;
|
2024-07-20 16:39:09 -07:00
|
|
|
curr_dst.y = dstrect->y;
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_dst.w = dstrect->w - dst_left_width - dst_right_width;
|
|
|
|
|
curr_dst.h = dst_top_height;
|
2024-07-20 16:39:09 -07:00
|
|
|
if (SDL_BlitSurfaceScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Bottom
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.y = srcrect->y + srcrect->h - bottom_height;
|
|
|
|
|
curr_dst.y = dstrect->y + dstrect->h - dst_bottom_height;
|
|
|
|
|
curr_dst.h = dst_bottom_height;
|
2024-07-20 16:39:09 -07:00
|
|
|
if (SDL_BlitSurfaceScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Center
|
2024-07-31 22:09:42 -07:00
|
|
|
curr_src.x = srcrect->x + left_width;
|
|
|
|
|
curr_src.y = srcrect->y + top_height;
|
|
|
|
|
curr_src.w = srcrect->w - left_width - right_width;
|
|
|
|
|
curr_src.h = srcrect->h - top_height - bottom_height;
|
|
|
|
|
curr_dst.x = dstrect->x + dst_left_width;
|
|
|
|
|
curr_dst.y = dstrect->y + dst_top_height;
|
|
|
|
|
curr_dst.w = dstrect->w - dst_left_width - dst_right_width;
|
|
|
|
|
curr_dst.h = dstrect->h - dst_top_height - dst_bottom_height;
|
2024-07-20 16:39:09 -07:00
|
|
|
if (SDL_BlitSurfaceScaled(src, &curr_src, dst, &curr_dst, scaleMode) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/*
|
|
|
|
|
* Lock a surface to directly access the pixels
|
|
|
|
|
*/
|
2022-11-30 12:51:59 -08:00
|
|
|
int SDL_LockSurface(SDL_Surface *surface)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
|
|
|
|
return SDL_InvalidParamError("surface");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!surface->internal->locked) {
|
2020-01-21 21:33:40 +01:00
|
|
|
#if SDL_HAVE_RLE
|
2015-06-21 17:33:46 +02:00
|
|
|
/* Perform the lock */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->flags & SDL_INTERNAL_SURFACE_RLEACCEL) {
|
|
|
|
|
SDL_UnRLESurface(surface, SDL_TRUE);
|
|
|
|
|
surface->internal->flags |= SDL_INTERNAL_SURFACE_RLEACCEL; /* save accel'd state */
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2020-01-21 21:33:40 +01:00
|
|
|
#endif
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Increment the surface lock count, for recursive locks */
|
2024-07-08 14:59:18 -07:00
|
|
|
++surface->internal->locked;
|
|
|
|
|
surface->flags |= SDL_SURFACE_LOCKED;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
/* Ready to go.. */
|
2022-11-27 17:38:43 +01:00
|
|
|
return 0;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Unlock a previously locked surface
|
|
|
|
|
*/
|
2022-11-30 12:51:59 -08:00
|
|
|
void SDL_UnlockSurface(SDL_Surface *surface)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/* Only perform an unlock if we are locked */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!surface->internal->locked || (--surface->internal->locked > 0)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-21 21:33:40 +01:00
|
|
|
#if SDL_HAVE_RLE
|
2015-06-21 17:33:46 +02:00
|
|
|
/* Update RLE encoded surface with new data */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->flags & SDL_INTERNAL_SURFACE_RLEACCEL) {
|
|
|
|
|
surface->internal->flags &= ~SDL_INTERNAL_SURFACE_RLEACCEL; /* stop lying */
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_RLESurface(surface);
|
|
|
|
|
}
|
2020-01-21 21:33:40 +01:00
|
|
|
#endif
|
2024-07-08 14:59:18 -07:00
|
|
|
|
|
|
|
|
surface->flags &= ~SDL_SURFACE_LOCKED;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-20 06:31:37 -08:00
|
|
|
static int SDL_FlipSurfaceHorizontal(SDL_Surface *surface)
|
|
|
|
|
{
|
|
|
|
|
SDL_bool isstack;
|
|
|
|
|
Uint8 *row, *a, *b, *tmp;
|
|
|
|
|
int i, j, bpp;
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (SDL_BITSPERPIXEL(surface->format) < 8) {
|
2024-01-20 06:31:37 -08:00
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
bpp = SDL_BYTESPERPIXEL(surface->format);
|
2024-01-20 06:31:37 -08:00
|
|
|
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)
|
|
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2024-01-20 06:31:37 -08:00
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-16 12:46:28 -07:00
|
|
|
SDL_Surface *SDL_ConvertSurfaceAndColorspace(SDL_Surface *surface, SDL_PixelFormat format, SDL_Palette *palette, SDL_Colorspace colorspace, SDL_PropertiesID props)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-16 12:46:28 -07:00
|
|
|
SDL_Palette *temp_palette = NULL;
|
|
|
|
|
SDL_Surface *convert = NULL;
|
2024-01-31 17:25:25 -08:00
|
|
|
SDL_Colorspace src_colorspace;
|
2024-02-19 08:45:02 -08:00
|
|
|
SDL_PropertiesID src_properties;
|
2015-06-21 17:33:46 +02:00
|
|
|
Uint32 copy_flags;
|
|
|
|
|
SDL_Color copy_color;
|
|
|
|
|
SDL_Rect bounds;
|
2019-01-30 16:36:47 +01:00
|
|
|
int ret;
|
2020-02-23 23:07:15 +01:00
|
|
|
SDL_bool palette_ck_transform = SDL_FALSE;
|
2023-03-30 14:04:32 -07:00
|
|
|
Uint8 palette_ck_value = 0;
|
2020-02-24 21:57:03 +01:00
|
|
|
Uint8 *palette_saved_alpha = NULL;
|
2021-08-27 14:09:47 +02:00
|
|
|
int palette_saved_alpha_ncolors = 0;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2017-08-14 13:37:14 -07:00
|
|
|
SDL_InvalidParamError("surface");
|
2024-07-16 12:46:28 -07:00
|
|
|
goto error;
|
2017-08-14 13:37:14 -07:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
|
|
|
|
|
if (format == SDL_PIXELFORMAT_UNKNOWN) {
|
2017-08-14 13:37:14 -07:00
|
|
|
SDL_InvalidParamError("format");
|
2024-07-16 12:46:28 -07:00
|
|
|
goto error;
|
2017-08-14 13:37:14 -07:00
|
|
|
}
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/* Check for empty destination palette! (results in empty image) */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (palette) {
|
2015-06-21 17:33:46 +02:00
|
|
|
int i;
|
2024-07-08 14:59:18 -07:00
|
|
|
for (i = 0; i < palette->ncolors; ++i) {
|
|
|
|
|
if ((palette->colors[i].r != 0xFF) || (palette->colors[i].g != 0xFF) || (palette->colors[i].b != 0xFF)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
break;
|
2022-11-27 17:38:43 +01:00
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
if (i == palette->ncolors) {
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_SetError("Empty destination palette");
|
2024-07-16 12:46:28 -07:00
|
|
|
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;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-21 08:43:51 -07:00
|
|
|
src_colorspace = surface->internal->colorspace;
|
2024-07-08 14:59:18 -07:00
|
|
|
src_properties = surface->internal->props;
|
2024-02-19 08:45:02 -08:00
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/* Create a new surface with the desired format */
|
2024-07-08 14:59:18 -07:00
|
|
|
convert = SDL_CreateSurface(surface->w, surface->h, format);
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!convert) {
|
2024-07-16 12:46:28 -07:00
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (SDL_ISPIXELFORMAT_INDEXED(format)) {
|
|
|
|
|
SDL_SetSurfacePalette(convert, palette);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-31 17:25:25 -08:00
|
|
|
if (colorspace == SDL_COLORSPACE_UNKNOWN) {
|
|
|
|
|
colorspace = src_colorspace;
|
|
|
|
|
}
|
|
|
|
|
SDL_SetSurfaceColorspace(convert, colorspace);
|
2022-12-02 21:53:48 +01:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
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) {
|
2024-07-16 12:46:28 -07:00
|
|
|
goto error;
|
2022-12-02 21:53:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Save the original copy flags */
|
2024-07-08 14:59:18 -07:00
|
|
|
copy_flags = surface->internal->map.info.flags;
|
2022-12-02 21:53:48 +01:00
|
|
|
|
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/* Save the original copy flags */
|
2024-07-08 14:59:18 -07:00
|
|
|
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);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
/* Copy over the image data */
|
|
|
|
|
bounds.x = 0;
|
|
|
|
|
bounds.y = 0;
|
|
|
|
|
bounds.w = surface->w;
|
|
|
|
|
bounds.h = surface->h;
|
2019-09-10 17:12:34 +02:00
|
|
|
|
2020-02-24 21:57:03 +01:00
|
|
|
/* Source surface has a palette with no real alpha (0 or OPAQUE).
|
|
|
|
|
* Destination format has alpha.
|
|
|
|
|
* -> set alpha channel to be opaque */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->palette && SDL_ISPIXELFORMAT_ALPHA(format)) {
|
2020-02-24 21:57:03 +01:00
|
|
|
SDL_bool set_opaque = SDL_FALSE;
|
|
|
|
|
|
2020-03-17 09:35:42 +01:00
|
|
|
SDL_bool is_opaque, has_alpha_channel;
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_DetectPalette(surface->internal->palette, &is_opaque, &has_alpha_channel);
|
2020-02-24 21:57:03 +01:00
|
|
|
|
2020-03-17 09:35:42 +01:00
|
|
|
if (is_opaque) {
|
|
|
|
|
if (!has_alpha_channel) {
|
|
|
|
|
set_opaque = SDL_TRUE;
|
2020-02-24 21:57:03 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set opaque and backup palette alpha values */
|
|
|
|
|
if (set_opaque) {
|
|
|
|
|
int i;
|
2024-07-08 14:59:18 -07:00
|
|
|
palette_saved_alpha_ncolors = surface->internal->palette->ncolors;
|
2023-12-04 20:57:27 -08:00
|
|
|
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++) {
|
2024-07-08 14:59:18 -07:00
|
|
|
palette_saved_alpha[i] = surface->internal->palette->colors[i].a;
|
|
|
|
|
surface->internal->palette->colors[i].a = SDL_ALPHA_OPAQUE;
|
2023-12-04 20:57:27 -08:00
|
|
|
}
|
2020-02-24 21:57:03 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 17:12:34 +02:00
|
|
|
/* Transform colorkey to alpha. for cases where source palette has duplicate values, and colorkey is one of them */
|
|
|
|
|
if (copy_flags & SDL_COPY_COLORKEY) {
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->palette && !palette) {
|
2020-02-23 23:07:15 +01:00
|
|
|
palette_ck_transform = SDL_TRUE;
|
2024-07-08 14:59:18 -07:00
|
|
|
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;
|
2019-09-10 17:12:34 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-27 06:36:39 -08:00
|
|
|
ret = SDL_BlitSurfaceUnchecked(surface, &bounds, convert, &bounds);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2020-02-24 21:57:03 +01:00
|
|
|
/* Restore colorkey alpha value */
|
2019-09-10 17:12:34 +02:00
|
|
|
if (palette_ck_transform) {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->palette->colors[surface->internal->map.info.colorkey].a = palette_ck_value;
|
2019-09-10 17:12:34 +02:00
|
|
|
}
|
|
|
|
|
|
2020-02-24 21:57:03 +01:00
|
|
|
/* Restore palette alpha values */
|
|
|
|
|
if (palette_saved_alpha) {
|
|
|
|
|
int i;
|
2021-08-27 14:09:47 +02:00
|
|
|
for (i = 0; i < palette_saved_alpha_ncolors; i++) {
|
2024-07-08 14:59:18 -07:00
|
|
|
surface->internal->palette->colors[i].a = palette_saved_alpha[i];
|
2020-02-24 21:57:03 +01:00
|
|
|
}
|
|
|
|
|
SDL_stack_free(palette_saved_alpha);
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/* Clean up the original surface, and update converted surface */
|
2024-07-08 14:59:18 -07:00
|
|
|
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 =
|
2015-06-21 17:33:46 +02:00
|
|
|
(copy_flags &
|
2022-11-30 12:51:59 -08:00
|
|
|
~(SDL_COPY_COLORKEY | SDL_COPY_BLEND | SDL_COPY_RLE_DESIRED | SDL_COPY_RLE_COLORKEY |
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_COPY_RLE_ALPHAKEY));
|
2024-07-08 14:59:18 -07:00
|
|
|
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);
|
2019-01-30 16:36:47 +01:00
|
|
|
|
2022-12-27 06:36:39 -08:00
|
|
|
/* SDL_BlitSurfaceUnchecked failed, and so the conversion */
|
2019-01-30 16:36:47 +01:00
|
|
|
if (ret < 0) {
|
2024-07-16 12:46:28 -07:00
|
|
|
goto error;
|
2019-01-30 16:36:47 +01:00
|
|
|
}
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
if (copy_flags & SDL_COPY_COLORKEY) {
|
|
|
|
|
SDL_bool set_colorkey_by_color = SDL_FALSE;
|
2020-05-17 20:45:55 +02:00
|
|
|
SDL_bool convert_colorkey = SDL_TRUE;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
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)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
/* The palette is identical, just set the same colorkey */
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_SetSurfaceColorKey(convert, 1, surface->internal->map.info.colorkey);
|
|
|
|
|
} else if (!palette) {
|
|
|
|
|
if (SDL_ISPIXELFORMAT_ALPHA(format)) {
|
2020-05-17 21:23:17 +02:00
|
|
|
/* 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;
|
|
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
} else {
|
|
|
|
|
set_colorkey_by_color = SDL_TRUE;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
set_colorkey_by_color = SDL_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (set_colorkey_by_color) {
|
Fixed bug 2979 - SDL_ConvertSurface does not convert color keys consistently
Edmund Horner
When a 16-bit "565 format" surface has a colour key set, it will blit with correct transparency. If, however, it has its colour key set then is converted to a 32-bit ARGB format surface, the colour key in the converted image will not necessarily be the same pixel value as the transparent pixels. It may not blit correctly, because the colour key does not match the right pixels.
In my case, with an image using 0xB54A for transparency, the colour key was converted to 180,170,82; but the corresponding pixels (with the same original value) were converted to 180,169,82. Blitting the converted image did not use transparency where expected.
I have attached a test case. The bug has been replicated on both x86_64 Linux (SDL 2.0.2), and 32-bit MS C++ 2010 on Windows (SDL 2.0.0).
2017-08-12 16:59:00 -07:00
|
|
|
SDL_Surface *tmp;
|
|
|
|
|
SDL_Surface *tmp2;
|
|
|
|
|
int converted_colorkey = 0;
|
|
|
|
|
|
|
|
|
|
/* Create a dummy surface to get the colorkey converted */
|
2024-07-08 14:59:18 -07:00
|
|
|
tmp = SDL_CreateSurface(1, 1, surface->format);
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!tmp) {
|
2024-07-16 12:46:28 -07:00
|
|
|
goto error;
|
2023-04-23 19:34:57 -04:00
|
|
|
}
|
Fixed bug 2979 - SDL_ConvertSurface does not convert color keys consistently
Edmund Horner
When a 16-bit "565 format" surface has a colour key set, it will blit with correct transparency. If, however, it has its colour key set then is converted to a 32-bit ARGB format surface, the colour key in the converted image will not necessarily be the same pixel value as the transparent pixels. It may not blit correctly, because the colour key does not match the right pixels.
In my case, with an image using 0xB54A for transparency, the colour key was converted to 180,170,82; but the corresponding pixels (with the same original value) were converted to 180,169,82. Blitting the converted image did not use transparency where expected.
I have attached a test case. The bug has been replicated on both x86_64 Linux (SDL 2.0.2), and 32-bit MS C++ 2010 on Windows (SDL 2.0.0).
2017-08-12 16:59:00 -07:00
|
|
|
|
2017-09-14 08:37:27 -04:00
|
|
|
/* Share the palette, if any */
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->palette) {
|
|
|
|
|
SDL_SetSurfacePalette(tmp, surface->internal->palette);
|
2017-09-14 08:37:27 -04:00
|
|
|
}
|
2019-01-21 18:45:15 +01:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_FillSurfaceRect(tmp, NULL, surface->internal->map.info.colorkey);
|
Fixed bug 2979 - SDL_ConvertSurface does not convert color keys consistently
Edmund Horner
When a 16-bit "565 format" surface has a colour key set, it will blit with correct transparency. If, however, it has its colour key set then is converted to a 32-bit ARGB format surface, the colour key in the converted image will not necessarily be the same pixel value as the transparent pixels. It may not blit correctly, because the colour key does not match the right pixels.
In my case, with an image using 0xB54A for transparency, the colour key was converted to 180,170,82; but the corresponding pixels (with the same original value) were converted to 180,169,82. Blitting the converted image did not use transparency where expected.
I have attached a test case. The bug has been replicated on both x86_64 Linux (SDL 2.0.2), and 32-bit MS C++ 2010 on Windows (SDL 2.0.0).
2017-08-12 16:59:00 -07:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
tmp->internal->map.info.flags &= ~SDL_COPY_COLORKEY;
|
Fixed bug 2979 - SDL_ConvertSurface does not convert color keys consistently
Edmund Horner
When a 16-bit "565 format" surface has a colour key set, it will blit with correct transparency. If, however, it has its colour key set then is converted to a 32-bit ARGB format surface, the colour key in the converted image will not necessarily be the same pixel value as the transparent pixels. It may not blit correctly, because the colour key does not match the right pixels.
In my case, with an image using 0xB54A for transparency, the colour key was converted to 180,170,82; but the corresponding pixels (with the same original value) were converted to 180,169,82. Blitting the converted image did not use transparency where expected.
I have attached a test case. The bug has been replicated on both x86_64 Linux (SDL 2.0.2), and 32-bit MS C++ 2010 on Windows (SDL 2.0.0).
2017-08-12 16:59:00 -07:00
|
|
|
|
Fix remaining typos (#7921)
* Fix remaining typos
Found via `codespell -q 3 -S *.hex,*.pdf,./src/libm,./src/hidapi,./src/stdlib/SDL_malloc.c,./src/video/x11/edid.h -L caf,currenty,datas,einstance,fo,hda,lod,mata,parm,parms,pevent,pevents,pixelx,requestor,ser,statics,te,texturers,thid,uscaled,windowz`
2023-07-03 15:46:47 -04:00
|
|
|
/* Conversion of the colorkey */
|
2024-07-08 14:59:18 -07:00
|
|
|
tmp2 = SDL_ConvertSurfaceAndColorspace(tmp, format, palette, colorspace, props);
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!tmp2) {
|
2023-04-23 19:34:57 -04:00
|
|
|
SDL_DestroySurface(tmp);
|
2024-07-16 12:46:28 -07:00
|
|
|
goto error;
|
2023-04-23 19:34:57 -04:00
|
|
|
}
|
Fixed bug 2979 - SDL_ConvertSurface does not convert color keys consistently
Edmund Horner
When a 16-bit "565 format" surface has a colour key set, it will blit with correct transparency. If, however, it has its colour key set then is converted to a 32-bit ARGB format surface, the colour key in the converted image will not necessarily be the same pixel value as the transparent pixels. It may not blit correctly, because the colour key does not match the right pixels.
In my case, with an image using 0xB54A for transparency, the colour key was converted to 180,170,82; but the corresponding pixels (with the same original value) were converted to 180,169,82. Blitting the converted image did not use transparency where expected.
I have attached a test case. The bug has been replicated on both x86_64 Linux (SDL 2.0.2), and 32-bit MS C++ 2010 on Windows (SDL 2.0.0).
2017-08-12 16:59:00 -07:00
|
|
|
|
|
|
|
|
/* Get the converted colorkey */
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_memcpy(&converted_colorkey, tmp2->pixels, tmp2->internal->format->bytes_per_pixel);
|
Fixed bug 2979 - SDL_ConvertSurface does not convert color keys consistently
Edmund Horner
When a 16-bit "565 format" surface has a colour key set, it will blit with correct transparency. If, however, it has its colour key set then is converted to a 32-bit ARGB format surface, the colour key in the converted image will not necessarily be the same pixel value as the transparent pixels. It may not blit correctly, because the colour key does not match the right pixels.
In my case, with an image using 0xB54A for transparency, the colour key was converted to 180,170,82; but the corresponding pixels (with the same original value) were converted to 180,169,82. Blitting the converted image did not use transparency where expected.
I have attached a test case. The bug has been replicated on both x86_64 Linux (SDL 2.0.2), and 32-bit MS C++ 2010 on Windows (SDL 2.0.0).
2017-08-12 16:59:00 -07:00
|
|
|
|
2022-12-27 06:36:39 -08:00
|
|
|
SDL_DestroySurface(tmp);
|
|
|
|
|
SDL_DestroySurface(tmp2);
|
Fixed bug 2979 - SDL_ConvertSurface does not convert color keys consistently
Edmund Horner
When a 16-bit "565 format" surface has a colour key set, it will blit with correct transparency. If, however, it has its colour key set then is converted to a 32-bit ARGB format surface, the colour key in the converted image will not necessarily be the same pixel value as the transparent pixels. It may not blit correctly, because the colour key does not match the right pixels.
In my case, with an image using 0xB54A for transparency, the colour key was converted to 180,170,82; but the corresponding pixels (with the same original value) were converted to 180,169,82. Blitting the converted image did not use transparency where expected.
I have attached a test case. The bug has been replicated on both x86_64 Linux (SDL 2.0.2), and 32-bit MS C++ 2010 on Windows (SDL 2.0.0).
2017-08-12 16:59:00 -07:00
|
|
|
|
|
|
|
|
/* Set the converted colorkey on the new surface */
|
2022-12-27 06:36:39 -08:00
|
|
|
SDL_SetSurfaceColorKey(convert, 1, converted_colorkey);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
/* This is needed when converting for 3D texture upload */
|
2020-05-17 20:45:55 +02:00
|
|
|
if (convert_colorkey) {
|
|
|
|
|
SDL_ConvertColorkeyToAlpha(convert, SDL_TRUE);
|
|
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
}
|
2022-12-02 21:53:48 +01:00
|
|
|
|
|
|
|
|
end:
|
2024-07-16 12:46:28 -07:00
|
|
|
if (temp_palette) {
|
|
|
|
|
SDL_DestroyPalette(temp_palette);
|
|
|
|
|
}
|
2022-12-02 21:53:48 +01:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_SetSurfaceClipRect(convert, &surface->internal->clip_rect);
|
2015-06-21 17:33:46 +02:00
|
|
|
|
|
|
|
|
/* Enable alpha blending by default if the new surface has an
|
|
|
|
|
* alpha channel or alpha modulation */
|
2024-07-16 18:20:10 -07:00
|
|
|
if (SDL_ISPIXELFORMAT_ALPHA(format) ||
|
2017-08-12 15:21:26 -07:00
|
|
|
(copy_flags & SDL_COPY_MODULATE_ALPHA)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_SetSurfaceBlendMode(convert, SDL_BLENDMODE_BLEND);
|
|
|
|
|
}
|
2023-02-03 22:08:42 +01:00
|
|
|
if (copy_flags & SDL_COPY_RLE_DESIRED) {
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_SetSurfaceRLE(convert, SDL_TRUE);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We're ready to go! */
|
2022-11-27 17:38:43 +01:00
|
|
|
return convert;
|
2024-07-16 12:46:28 -07:00
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
if (temp_palette) {
|
|
|
|
|
SDL_DestroyPalette(temp_palette);
|
|
|
|
|
}
|
|
|
|
|
if (convert) {
|
|
|
|
|
SDL_DestroySurface(convert);
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-31 17:25:25 -08:00
|
|
|
SDL_Surface *SDL_DuplicateSurface(SDL_Surface *surface)
|
|
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2024-01-31 17:25:25 -08:00
|
|
|
SDL_InvalidParamError("surface");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-21 08:43:51 -07:00
|
|
|
return SDL_ConvertSurfaceAndColorspace(surface, surface->format, surface->internal->palette, surface->internal->colorspace, surface->internal->props);
|
2024-01-31 17:25:25 -08:00
|
|
|
}
|
|
|
|
|
|
2024-08-01 10:18:29 -07:00
|
|
|
SDL_Surface *SDL_ScaleSurface(SDL_Surface *surface, int width, int height, SDL_ScaleMode scaleMode)
|
|
|
|
|
{
|
|
|
|
|
SDL_Surface *convert = NULL;
|
|
|
|
|
Uint32 copy_flags;
|
|
|
|
|
SDL_Color copy_color;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
|
|
|
|
SDL_InvalidParamError("surface");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
// We can't directly scale a YUV surface (yet!)
|
|
|
|
|
SDL_Surface *tmp = SDL_CreateSurface(surface->w, surface->h, SDL_PIXELFORMAT_ARGB8888);
|
|
|
|
|
if (!tmp) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SDL_Surface *scaled = SDL_ScaleSurface(tmp, width, height, scaleMode);
|
|
|
|
|
SDL_DestroySurface(tmp);
|
|
|
|
|
if (!scaled) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
tmp = scaled;
|
|
|
|
|
|
|
|
|
|
SDL_Surface *result = SDL_ConvertSurfaceAndColorspace(tmp, surface->format, NULL, surface->internal->colorspace, surface->internal->props);
|
|
|
|
|
SDL_DestroySurface(tmp);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create a new surface with the desired size */
|
|
|
|
|
convert = SDL_CreateSurface(width, height, surface->format);
|
|
|
|
|
if (!convert) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
SDL_SetSurfacePalette(convert, surface->internal->palette);
|
|
|
|
|
SDL_SetSurfaceColorspace(convert, surface->internal->colorspace);
|
|
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
|
|
|
|
|
ret = SDL_BlitSurfaceScaled(surface, NULL, convert, NULL, scaleMode);
|
|
|
|
|
|
|
|
|
|
/* 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_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_BlitSurfaceScaled failed, and so the conversion */
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We're ready to go! */
|
|
|
|
|
return convert;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
if (convert) {
|
|
|
|
|
SDL_DestroySurface(convert);
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_Surface *SDL_ConvertSurface(SDL_Surface *surface, SDL_PixelFormat format)
|
2024-01-31 17:25:25 -08:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2024-02-02 17:56:33 -08:00
|
|
|
SDL_InvalidParamError("surface");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
return SDL_ConvertSurfaceAndColorspace(surface, format, NULL, SDL_GetDefaultColorspaceForFormat(format), surface->internal->props);
|
2024-01-31 17:25:25 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_Surface *SDL_DuplicatePixels(int width, int height, SDL_PixelFormat format, SDL_Colorspace colorspace, void *pixels, int pitch)
|
2024-02-03 10:18:12 -08:00
|
|
|
{
|
2024-02-03 10:32:55 -08:00
|
|
|
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;
|
|
|
|
|
}
|
2024-02-03 10:18:12 -08:00
|
|
|
|
2024-02-03 11:36:44 -08:00
|
|
|
SDL_SetSurfaceColorspace(surface, colorspace);
|
2024-02-03 10:18:12 -08:00
|
|
|
}
|
2024-02-03 10:32:55 -08:00
|
|
|
return surface;
|
2024-02-03 10:18:12 -08:00
|
|
|
}
|
|
|
|
|
|
2024-01-31 17:25:25 -08:00
|
|
|
int SDL_ConvertPixelsAndColorspace(int width, int height,
|
2024-07-08 14:59:18 -07:00
|
|
|
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)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_InternalSurface src_data, dst_data;
|
|
|
|
|
SDL_Surface *src_surface;
|
|
|
|
|
SDL_Surface *dst_surface;
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_Rect rect;
|
2022-11-30 12:51:59 -08:00
|
|
|
void *nonconst_src = (void *)src;
|
2020-10-02 10:48:27 +02:00
|
|
|
int ret;
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!src) {
|
2021-11-21 12:18:10 -08:00
|
|
|
return SDL_InvalidParamError("src");
|
|
|
|
|
}
|
|
|
|
|
if (!src_pitch) {
|
|
|
|
|
return SDL_InvalidParamError("src_pitch");
|
|
|
|
|
}
|
2023-11-09 22:29:15 +01:00
|
|
|
if (!dst) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return SDL_InvalidParamError("dst");
|
|
|
|
|
}
|
|
|
|
|
if (!dst_pitch) {
|
|
|
|
|
return SDL_InvalidParamError("dst_pitch");
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-03 07:05:32 -08:00
|
|
|
if (src_colorspace == SDL_COLORSPACE_UNKNOWN) {
|
|
|
|
|
src_colorspace = SDL_GetDefaultColorspaceForFormat(src_format);
|
|
|
|
|
}
|
|
|
|
|
if (dst_colorspace == SDL_COLORSPACE_UNKNOWN) {
|
|
|
|
|
dst_colorspace = SDL_GetDefaultColorspaceForFormat(dst_format);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-21 21:33:40 +01:00
|
|
|
#if SDL_HAVE_YUV
|
2017-11-12 22:51:12 -08:00
|
|
|
if (SDL_ISPIXELFORMAT_FOURCC(src_format) && SDL_ISPIXELFORMAT_FOURCC(dst_format)) {
|
2024-02-19 08:45:02 -08:00
|
|
|
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);
|
2017-11-12 22:51:12 -08:00
|
|
|
} else if (SDL_ISPIXELFORMAT_FOURCC(src_format)) {
|
2024-02-19 08:45:02 -08:00
|
|
|
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);
|
2017-11-12 22:51:12 -08:00
|
|
|
} else if (SDL_ISPIXELFORMAT_FOURCC(dst_format)) {
|
2024-02-19 08:45:02 -08:00
|
|
|
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);
|
2017-11-12 22:51:12 -08:00
|
|
|
}
|
2020-01-21 21:33:40 +01:00
|
|
|
#else
|
|
|
|
|
if (SDL_ISPIXELFORMAT_FOURCC(src_format) || SDL_ISPIXELFORMAT_FOURCC(dst_format)) {
|
2022-01-17 17:22:30 +01:00
|
|
|
return SDL_SetError("SDL not built with YUV support");
|
2020-01-21 21:33:40 +01:00
|
|
|
}
|
|
|
|
|
#endif
|
2017-11-12 22:51:12 -08:00
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/* Fast path for same format copy */
|
2024-01-31 17:25:25 -08:00
|
|
|
if (src_format == dst_format && src_colorspace == dst_colorspace) {
|
Fixed bug 3857 - SDL_ConvertPixels misses YUV conversions
Sylvain
Few issues with YUV on SDL2 when using odd dimensions, and missing conversions from/back to YUV formats.
1) The big part is that SDL_ConvertPixels() does not convert to/from YUV in most cases. This now works with any format and also with odd dimensions,
by adding two internal functions SDL_ConvertPixels_YUV_to_ARGB8888 and SDL_ConvertPixels_ARGB8888_to_YUV (could it be XRGB888 ?).
The target format is hard coded to ARGB888 (which is the default in the internal of the software renderer).
In case of different YUV conversion, it will do an intermediate conversion to a ARGB8888 buffer.
SDL_ConvertPixels_YUV_to_ARGB8888 is somehow redundant with all the "Color*Dither*Mod*".
But it allows some completeness of SDL_ConvertPixels to handle all YUV format.
It also works with odd dimensions.
Moreover, I did some benchmark(SDL_ConvertPixel vs Color32DitherYV12Mod1X and Color32DitherYUY2Mod1X).
gcc-6.3 and clang-4.0. gcc performs better than clang. And, with gcc, SDL_ConvertPixels() performs better (20%) than the two C function Color32Dither*().
For instance, to convert 10 times a 3888x2592 image, it takes ~195 ms with SDL_ConvertPixels and ~235 ms with Color32Dither*().
Especially because of gcc vectorize feature that optimises all conversion loops (-ftree-loop-vectorize).
Nb: I put no image pitch for the YUV buffers. because it complexify a little bit the code and the API :
There would be some ambiguity when setting the pitch exactly to image width:
would it a be pitch of image width (for luma and chroma). or just contiguous data ? (could set pitch=0 for the later).
2) Small issues with odd dimensions:
If width "w" is odd, luma plane width is still "w" whereas chroma planes will be "(w + 1)/2". Almost the same for odd h.
Solution is to strategically substitute "w" by "(w+1)/2" at the good places ...
- In the repository, SDL_ConvertPixels() handles YUV only if yuv source format is exactly the same as YUV destination format.
It basically does a memcpy of pixels, but it's done incorrectly when width or height is odd (wrong size of chroma planes). This is fixed.
- SDL Renderers don't support odd width/height for YUV textures.
This is fixed for software, opengl, opengles2. (opengles 1 does not support it and fallback to software rendering).
This is *not* fixed for D3D and D3D11 ... (and others, psp ?)
Only *two* Dither function are fixed ... not sure if others are really used.
- This is not possible to create a NV12/NV12 texture with the software renderer, whereas other renderers allow it.
This is fixed, by using SDL_ConvertPixels underneath.
- It was not possible to SDL_UpdateTexture() of format NV12/NV21 with the software renderer. this is fixed.
Here's also two testcases:
- that do all combination of conversion.
- to test partial UpdateTexture
2017-10-06 16:50:24 -07:00
|
|
|
int i;
|
2017-11-12 22:51:12 -08:00
|
|
|
const int bpp = SDL_BYTESPERPIXEL(src_format);
|
|
|
|
|
width *= bpp;
|
|
|
|
|
for (i = height; i--;) {
|
|
|
|
|
SDL_memcpy(dst, src, width);
|
2022-11-30 12:51:59 -08:00
|
|
|
src = (const Uint8 *)src + src_pitch;
|
|
|
|
|
dst = (Uint8 *)dst + dst_pitch;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
Fixed bug 3857 - SDL_ConvertPixels misses YUV conversions
Sylvain
Few issues with YUV on SDL2 when using odd dimensions, and missing conversions from/back to YUV formats.
1) The big part is that SDL_ConvertPixels() does not convert to/from YUV in most cases. This now works with any format and also with odd dimensions,
by adding two internal functions SDL_ConvertPixels_YUV_to_ARGB8888 and SDL_ConvertPixels_ARGB8888_to_YUV (could it be XRGB888 ?).
The target format is hard coded to ARGB888 (which is the default in the internal of the software renderer).
In case of different YUV conversion, it will do an intermediate conversion to a ARGB8888 buffer.
SDL_ConvertPixels_YUV_to_ARGB8888 is somehow redundant with all the "Color*Dither*Mod*".
But it allows some completeness of SDL_ConvertPixels to handle all YUV format.
It also works with odd dimensions.
Moreover, I did some benchmark(SDL_ConvertPixel vs Color32DitherYV12Mod1X and Color32DitherYUY2Mod1X).
gcc-6.3 and clang-4.0. gcc performs better than clang. And, with gcc, SDL_ConvertPixels() performs better (20%) than the two C function Color32Dither*().
For instance, to convert 10 times a 3888x2592 image, it takes ~195 ms with SDL_ConvertPixels and ~235 ms with Color32Dither*().
Especially because of gcc vectorize feature that optimises all conversion loops (-ftree-loop-vectorize).
Nb: I put no image pitch for the YUV buffers. because it complexify a little bit the code and the API :
There would be some ambiguity when setting the pitch exactly to image width:
would it a be pitch of image width (for luma and chroma). or just contiguous data ? (could set pitch=0 for the later).
2) Small issues with odd dimensions:
If width "w" is odd, luma plane width is still "w" whereas chroma planes will be "(w + 1)/2". Almost the same for odd h.
Solution is to strategically substitute "w" by "(w+1)/2" at the good places ...
- In the repository, SDL_ConvertPixels() handles YUV only if yuv source format is exactly the same as YUV destination format.
It basically does a memcpy of pixels, but it's done incorrectly when width or height is odd (wrong size of chroma planes). This is fixed.
- SDL Renderers don't support odd width/height for YUV textures.
This is fixed for software, opengl, opengles2. (opengles 1 does not support it and fallback to software rendering).
This is *not* fixed for D3D and D3D11 ... (and others, psp ?)
Only *two* Dither function are fixed ... not sure if others are really used.
- This is not possible to create a NV12/NV12 texture with the software renderer, whereas other renderers allow it.
This is fixed, by using SDL_ConvertPixels underneath.
- It was not possible to SDL_UpdateTexture() of format NV12/NV21 with the software renderer. this is fixed.
Here's also two testcases:
- that do all combination of conversion.
- to test partial UpdateTexture
2017-10-06 16:50:24 -07:00
|
|
|
return 0;
|
|
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
src_surface = SDL_InitializeSurface(&src_data, width, height, src_format, src_colorspace, src_properties, nonconst_src, src_pitch, SDL_TRUE);
|
|
|
|
|
if (!src_surface) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return -1;
|
|
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_SetSurfaceBlendMode(src_surface, SDL_BLENDMODE_NONE);
|
2024-01-31 17:25:25 -08:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
dst_surface = SDL_InitializeSurface(&dst_data, width, height, dst_format, dst_colorspace, dst_properties, dst, dst_pitch, SDL_TRUE);
|
|
|
|
|
if (!dst_surface) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set up the rect and go! */
|
|
|
|
|
rect.x = 0;
|
|
|
|
|
rect.y = 0;
|
|
|
|
|
rect.w = width;
|
|
|
|
|
rect.h = height;
|
2024-07-08 14:59:18 -07:00
|
|
|
ret = SDL_BlitSurfaceUnchecked(src_surface, &rect, dst_surface, &rect);
|
2020-10-02 10:48:27 +02:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_DestroySurface(src_surface);
|
|
|
|
|
SDL_DestroySurface(dst_surface);
|
2020-10-02 10:48:27 +02:00
|
|
|
|
|
|
|
|
return ret;
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-31 17:25:25 -08:00
|
|
|
int SDL_ConvertPixels(int width, int height,
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_PixelFormat src_format, const void *src, int src_pitch,
|
|
|
|
|
SDL_PixelFormat dst_format, void *dst, int dst_pitch)
|
2024-01-31 17:25:25 -08:00
|
|
|
{
|
|
|
|
|
return SDL_ConvertPixelsAndColorspace(width, height,
|
2024-02-19 08:45:02 -08:00
|
|
|
src_format, SDL_COLORSPACE_UNKNOWN, 0, src, src_pitch,
|
|
|
|
|
dst_format, SDL_COLORSPACE_UNKNOWN, 0, dst, dst_pitch);
|
2024-01-31 17:25:25 -08:00
|
|
|
}
|
|
|
|
|
|
2021-11-21 12:18:10 -08:00
|
|
|
/*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
2024-07-17 12:50:56 -07:00
|
|
|
|
|
|
|
|
static void SDL_PremultiplyAlpha_AXYZ8888(int width, int height, const void *src, int src_pitch, void *dst, int dst_pitch)
|
2021-11-21 12:18:10 -08:00
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
2024-07-17 12:50:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-21 08:43:51 -07:00
|
|
|
colorspace = surface->internal->colorspace;
|
2024-07-17 12:50:56 -07:00
|
|
|
|
|
|
|
|
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);
|
2021-11-21 12:18:10 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
int SDL_ClearSurface(SDL_Surface *surface, float r, float g, float b, float a)
|
|
|
|
|
{
|
|
|
|
|
SDL_Rect clip_rect;
|
|
|
|
|
int result = -1;
|
|
|
|
|
|
|
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
|
|
|
|
return SDL_InvalidParamError("surface");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SDL_GetSurfaceClipRect(surface, &clip_rect);
|
|
|
|
|
SDL_SetSurfaceClipRect(surface, NULL);
|
|
|
|
|
|
|
|
|
|
if (!SDL_ISPIXELFORMAT_FOURCC(surface->format) &&
|
|
|
|
|
SDL_BYTESPERPIXEL(surface->format) <= sizeof(Uint32)) {
|
|
|
|
|
Uint32 color;
|
|
|
|
|
|
|
|
|
|
color = SDL_MapSurfaceRGBA(surface,
|
|
|
|
|
(Uint8)SDL_roundf(SDL_clamp(r, 0.0f, 1.0f) * 255.0f),
|
|
|
|
|
(Uint8)SDL_roundf(SDL_clamp(g, 0.0f, 1.0f) * 255.0f),
|
|
|
|
|
(Uint8)SDL_roundf(SDL_clamp(b, 0.0f, 1.0f) * 255.0f),
|
|
|
|
|
(Uint8)SDL_roundf(SDL_clamp(a, 0.0f, 1.0f) * 255.0f));
|
|
|
|
|
result = SDL_FillSurfaceRect(surface, NULL, color);
|
|
|
|
|
} else if (SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
// We can't directly set an RGB value on a YUV surface
|
|
|
|
|
SDL_Surface *tmp = SDL_CreateSurface(surface->w, surface->h, SDL_PIXELFORMAT_ARGB8888);
|
|
|
|
|
if (!tmp) {
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (SDL_ClearSurface(tmp, r, g, b, a) == 0) {
|
2024-07-21 08:43:51 -07:00
|
|
|
result = SDL_ConvertPixelsAndColorspace(surface->w, surface->h, tmp->format, tmp->internal->colorspace, tmp->internal->props, tmp->pixels, tmp->pitch, surface->format, surface->internal->colorspace, surface->internal->props, surface->pixels, surface->pitch);
|
2024-07-17 16:25:00 -07:00
|
|
|
}
|
|
|
|
|
SDL_DestroySurface(tmp);
|
|
|
|
|
} else {
|
|
|
|
|
// Take advantage of blit color conversion
|
|
|
|
|
SDL_Surface *tmp = SDL_CreateSurface(1, 1, SDL_PIXELFORMAT_RGBA128_FLOAT);
|
|
|
|
|
if (!tmp) {
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
2024-07-21 08:43:51 -07:00
|
|
|
SDL_SetSurfaceColorspace(tmp, surface->internal->colorspace);
|
2024-07-17 16:25:00 -07:00
|
|
|
|
|
|
|
|
float *pixels = (float *)tmp->pixels;
|
|
|
|
|
pixels[0] = r;
|
|
|
|
|
pixels[1] = g;
|
|
|
|
|
pixels[2] = b;
|
|
|
|
|
pixels[3] = a;
|
|
|
|
|
|
|
|
|
|
result = SDL_BlitSurfaceScaled(tmp, NULL, surface, NULL, SDL_SCALEMODE_NEAREST);
|
|
|
|
|
SDL_DestroySurface(tmp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
SDL_SetSurfaceClipRect(surface, &clip_rect);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-18 04:36:37 -08:00
|
|
|
/* 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;
|
2024-02-05 09:43:36 -08:00
|
|
|
int result = -1;
|
2024-01-18 04:36:37 -08:00
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
if (r) {
|
|
|
|
|
*r = 0;
|
|
|
|
|
} else {
|
|
|
|
|
r = &unused;
|
2024-01-18 04:36:37 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
if (g) {
|
|
|
|
|
*g = 0;
|
|
|
|
|
} else {
|
|
|
|
|
g = &unused;
|
2024-01-18 04:36:37 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
if (b) {
|
|
|
|
|
*b = 0;
|
|
|
|
|
} else {
|
|
|
|
|
b = &unused;
|
2024-01-18 04:36:37 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
if (a) {
|
|
|
|
|
*a = 0;
|
|
|
|
|
} else {
|
|
|
|
|
a = &unused;
|
2024-01-18 04:36:37 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
if (!SDL_SurfaceValid(surface) || !surface->format || !surface->pixels) {
|
|
|
|
|
return SDL_InvalidParamError("surface");
|
2024-01-18 04:36:37 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
if (x < 0 || x >= surface->w) {
|
|
|
|
|
return SDL_InvalidParamError("x");
|
2024-01-18 04:36:37 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
if (y < 0 || y >= surface->h) {
|
|
|
|
|
return SDL_InvalidParamError("y");
|
2024-01-18 04:36:37 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
bytes_per_pixel = SDL_BYTESPERPIXEL(surface->format);
|
2024-01-18 04:36:37 -08:00
|
|
|
|
|
|
|
|
if (SDL_MUSTLOCK(surface)) {
|
2024-07-17 14:07:33 -07:00
|
|
|
if (SDL_LockSurface(surface) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2024-01-18 04:36:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p = (Uint8 *)surface->pixels + y * surface->pitch + x * bytes_per_pixel;
|
2024-02-05 09:43:36 -08:00
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
if (bytes_per_pixel <= sizeof(pixel) && !SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
/* 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;
|
|
|
|
|
} else if (SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
// FIXME: We need code to extract a single macroblock from a YUV surface
|
|
|
|
|
SDL_Surface *converted = SDL_ConvertSurface(surface, SDL_PIXELFORMAT_ARGB8888);
|
|
|
|
|
if (converted) {
|
|
|
|
|
result = SDL_ReadSurfacePixel(converted, x, y, r, g, b, a);
|
|
|
|
|
SDL_DestroySurface(converted);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2024-02-05 09:43:36 -08:00
|
|
|
/* This is really slow, but it gets the job done */
|
|
|
|
|
Uint8 rgba[4];
|
|
|
|
|
|
2024-07-21 08:43:51 -07:00
|
|
|
if (SDL_ConvertPixelsAndColorspace(1, 1, surface->format, surface->internal->colorspace, surface->internal->props, p, surface->pitch, SDL_PIXELFORMAT_RGBA32, SDL_COLORSPACE_SRGB, 0, rgba, sizeof(rgba)) == 0) {
|
2024-02-05 09:43:36 -08:00
|
|
|
*r = rgba[0];
|
|
|
|
|
*g = rgba[1];
|
|
|
|
|
*b = rgba[2];
|
|
|
|
|
*a = rgba[3];
|
|
|
|
|
result = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-01-18 04:36:37 -08:00
|
|
|
|
|
|
|
|
if (SDL_MUSTLOCK(surface)) {
|
|
|
|
|
SDL_UnlockSurface(surface);
|
|
|
|
|
}
|
2024-02-05 09:43:36 -08:00
|
|
|
return result;
|
2024-01-18 04:36:37 -08:00
|
|
|
}
|
|
|
|
|
|
2024-07-17 16:25:00 -07:00
|
|
|
int SDL_ReadSurfacePixelFloat(SDL_Surface *surface, int x, int y, float *r, float *g, float *b, float *a)
|
|
|
|
|
{
|
|
|
|
|
float unused;
|
|
|
|
|
int result = -1;
|
|
|
|
|
|
|
|
|
|
if (r) {
|
|
|
|
|
*r = 0.0f;
|
|
|
|
|
} else {
|
|
|
|
|
r = &unused;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (g) {
|
|
|
|
|
*g = 0.0f;
|
|
|
|
|
} else {
|
|
|
|
|
g = &unused;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (b) {
|
|
|
|
|
*b = 0.0f;
|
|
|
|
|
} else {
|
|
|
|
|
b = &unused;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (a) {
|
|
|
|
|
*a = 0.0f;
|
|
|
|
|
} else {
|
|
|
|
|
a = &unused;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!SDL_SurfaceValid(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 (SDL_BYTESPERPIXEL(surface->format) <= sizeof(Uint32) && !SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
Uint8 r8, g8, b8, a8;
|
|
|
|
|
|
|
|
|
|
if (SDL_ReadSurfacePixel(surface, x, y, &r8, &g8, &b8, &a8) == 0) {
|
|
|
|
|
*r = (float)r8 / 255.0f;
|
|
|
|
|
*g = (float)g8 / 255.0f;
|
|
|
|
|
*b = (float)b8 / 255.0f;
|
|
|
|
|
*a = (float)a8 / 255.0f;
|
|
|
|
|
result = 0;
|
|
|
|
|
}
|
|
|
|
|
} else if (SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
// FIXME: We need code to extract a single macroblock from a YUV surface
|
|
|
|
|
SDL_Surface *converted = SDL_ConvertSurface(surface, SDL_PIXELFORMAT_ARGB8888);
|
|
|
|
|
if (converted) {
|
|
|
|
|
result = SDL_ReadSurfacePixelFloat(converted, x, y, r, g, b, a);
|
|
|
|
|
SDL_DestroySurface(converted);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
/* This is really slow, but it gets the job done */
|
|
|
|
|
float rgba[4];
|
|
|
|
|
Uint8 *p;
|
|
|
|
|
|
|
|
|
|
if (SDL_MUSTLOCK(surface)) {
|
|
|
|
|
if (SDL_LockSurface(surface) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p = (Uint8 *)surface->pixels + y * surface->pitch + x * SDL_BYTESPERPIXEL(surface->format);
|
|
|
|
|
|
|
|
|
|
if (surface->format == SDL_PIXELFORMAT_RGBA128_FLOAT) {
|
|
|
|
|
SDL_memcpy(rgba, p, sizeof(rgba));
|
|
|
|
|
result = 0;
|
|
|
|
|
} else {
|
2024-07-21 08:43:51 -07:00
|
|
|
SDL_Colorspace src_colorspace = surface->internal->colorspace;
|
2024-07-17 16:25:00 -07:00
|
|
|
SDL_Colorspace dst_colorspace = (src_colorspace == SDL_COLORSPACE_SRGB_LINEAR ? SDL_COLORSPACE_SRGB_LINEAR : SDL_COLORSPACE_SRGB);
|
|
|
|
|
|
|
|
|
|
if (SDL_ConvertPixelsAndColorspace(1, 1, surface->format, src_colorspace, surface->internal->props, p, surface->pitch, SDL_PIXELFORMAT_RGBA128_FLOAT, dst_colorspace, 0, rgba, sizeof(rgba)) == 0) {
|
|
|
|
|
result = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (result == 0) {
|
|
|
|
|
*r = rgba[0];
|
|
|
|
|
*g = rgba[1];
|
|
|
|
|
*b = rgba[2];
|
|
|
|
|
*a = rgba[3];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (SDL_MUSTLOCK(surface)) {
|
|
|
|
|
SDL_UnlockSurface(surface);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-20 17:52:45 -07:00
|
|
|
int SDL_WriteSurfacePixel(SDL_Surface *surface, int x, int y, Uint8 r, Uint8 g, Uint8 b, Uint8 a)
|
|
|
|
|
{
|
|
|
|
|
Uint32 pixel = 0;
|
|
|
|
|
size_t bytes_per_pixel;
|
|
|
|
|
Uint8 *p;
|
|
|
|
|
int result = -1;
|
|
|
|
|
|
|
|
|
|
if (!SDL_SurfaceValid(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");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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) && !SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
pixel = SDL_MapRGBA(surface->internal->format, surface->internal->palette, r, g, b, a);
|
|
|
|
|
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
|
|
|
|
|
SDL_memcpy(p, ((Uint8 *)&pixel) + (sizeof(pixel) - bytes_per_pixel), bytes_per_pixel);
|
|
|
|
|
#else
|
|
|
|
|
SDL_memcpy(p, &pixel, bytes_per_pixel);
|
|
|
|
|
#endif
|
|
|
|
|
result = 0;
|
|
|
|
|
} else if (SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
result = SDL_Unsupported();
|
|
|
|
|
} else {
|
|
|
|
|
/* This is really slow, but it gets the job done */
|
|
|
|
|
Uint8 rgba[4];
|
|
|
|
|
|
|
|
|
|
rgba[0] = r;
|
|
|
|
|
rgba[1] = g;
|
|
|
|
|
rgba[2] = b;
|
|
|
|
|
rgba[3] = a;
|
2024-07-21 08:43:51 -07:00
|
|
|
result = SDL_ConvertPixelsAndColorspace(1, 1, SDL_PIXELFORMAT_RGBA32, SDL_COLORSPACE_SRGB, 0, rgba, sizeof(rgba), surface->format, surface->internal->colorspace, surface->internal->props, p, surface->pitch);
|
2024-07-20 17:52:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (SDL_MUSTLOCK(surface)) {
|
|
|
|
|
SDL_UnlockSurface(surface);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int SDL_WriteSurfacePixelFloat(SDL_Surface *surface, int x, int y, float r, float g, float b, float a)
|
|
|
|
|
{
|
|
|
|
|
int result = -1;
|
|
|
|
|
|
|
|
|
|
if (!SDL_SurfaceValid(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 (SDL_BYTESPERPIXEL(surface->format) <= sizeof(Uint32) && !SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
Uint8 r8, g8, b8, a8;
|
|
|
|
|
|
|
|
|
|
r8 = (Uint8)SDL_round(SDL_clamp(r, 0.0f, 1.0f) * 255.0f);
|
|
|
|
|
g8 = (Uint8)SDL_round(SDL_clamp(g, 0.0f, 1.0f) * 255.0f);
|
|
|
|
|
b8 = (Uint8)SDL_round(SDL_clamp(b, 0.0f, 1.0f) * 255.0f);
|
|
|
|
|
a8 = (Uint8)SDL_round(SDL_clamp(a, 0.0f, 1.0f) * 255.0f);
|
|
|
|
|
if (SDL_WriteSurfacePixel(surface, x, y, r8, g8, b8, a8) == 0) {
|
|
|
|
|
result = 0;
|
|
|
|
|
}
|
|
|
|
|
} else if (SDL_ISPIXELFORMAT_FOURCC(surface->format)) {
|
|
|
|
|
result = SDL_Unsupported();
|
|
|
|
|
} else {
|
|
|
|
|
/* This is really slow, but it gets the job done */
|
|
|
|
|
float rgba[4];
|
|
|
|
|
Uint8 *p;
|
|
|
|
|
|
|
|
|
|
if (SDL_MUSTLOCK(surface)) {
|
|
|
|
|
if (SDL_LockSurface(surface) < 0) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p = (Uint8 *)surface->pixels + y * surface->pitch + x * SDL_BYTESPERPIXEL(surface->format);
|
|
|
|
|
|
|
|
|
|
rgba[0] = r;
|
|
|
|
|
rgba[1] = g;
|
|
|
|
|
rgba[2] = b;
|
|
|
|
|
rgba[3] = a;
|
|
|
|
|
|
|
|
|
|
if (surface->format == SDL_PIXELFORMAT_RGBA128_FLOAT) {
|
|
|
|
|
SDL_memcpy(p, rgba, sizeof(rgba));
|
|
|
|
|
result = 0;
|
|
|
|
|
} else {
|
2024-07-21 08:43:51 -07:00
|
|
|
SDL_Colorspace dst_colorspace = surface->internal->colorspace;
|
2024-07-20 17:52:45 -07:00
|
|
|
SDL_Colorspace src_colorspace = (dst_colorspace == SDL_COLORSPACE_SRGB_LINEAR ? SDL_COLORSPACE_SRGB_LINEAR : SDL_COLORSPACE_SRGB);
|
|
|
|
|
|
|
|
|
|
result = SDL_ConvertPixelsAndColorspace(1, 1, SDL_PIXELFORMAT_RGBA128_FLOAT, src_colorspace, 0, rgba, sizeof(rgba), surface->format, dst_colorspace, surface->internal->props, p, surface->pitch);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (SDL_MUSTLOCK(surface)) {
|
|
|
|
|
SDL_UnlockSurface(surface);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-21 17:33:46 +02:00
|
|
|
/*
|
|
|
|
|
* Free a surface created by the above function.
|
|
|
|
|
*/
|
2022-12-27 06:36:39 -08:00
|
|
|
void SDL_DestroySurface(SDL_Surface *surface)
|
2015-06-21 17:33:46 +02:00
|
|
|
{
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!SDL_SurfaceValid(surface)) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return;
|
|
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->flags & SDL_INTERNAL_SURFACE_DONTFREE) {
|
2015-06-21 17:33:46 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (--surface->refcount > 0) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-10-11 16:59:51 -07:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_DestroyProperties(surface->internal->props);
|
2023-12-20 17:35:43 -08:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_InvalidateMap(&surface->internal->map);
|
2023-10-11 16:59:51 -07:00
|
|
|
|
2024-07-08 14:59:18 -07:00
|
|
|
while (surface->internal->locked > 0) {
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_UnlockSurface(surface);
|
|
|
|
|
}
|
2020-01-21 21:33:40 +01:00
|
|
|
#if SDL_HAVE_RLE
|
2024-07-08 14:59:18 -07:00
|
|
|
if (surface->internal->flags & SDL_INTERNAL_SURFACE_RLEACCEL) {
|
|
|
|
|
SDL_UnRLESurface(surface, SDL_FALSE);
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|
2020-01-21 21:33:40 +01:00
|
|
|
#endif
|
2024-07-08 14:59:18 -07:00
|
|
|
SDL_SetSurfacePalette(surface, NULL);
|
|
|
|
|
|
|
|
|
|
if (surface->flags & SDL_SURFACE_PREALLOCATED) {
|
2019-01-31 11:45:31 +01:00
|
|
|
/* Don't free */
|
2024-07-08 14:59:18 -07:00
|
|
|
} else if (surface->flags & SDL_SURFACE_SIMD_ALIGNED) {
|
2019-01-31 11:45:31 +01:00
|
|
|
/* Free aligned */
|
2023-01-09 17:42:16 -08:00
|
|
|
SDL_aligned_free(surface->pixels);
|
2019-01-31 11:45:31 +01:00
|
|
|
} else {
|
|
|
|
|
/* Normal */
|
2015-06-21 17:33:46 +02:00
|
|
|
SDL_free(surface->pixels);
|
|
|
|
|
}
|
2024-07-08 14:59:18 -07:00
|
|
|
if (!(surface->internal->flags & SDL_INTERNAL_SURFACE_STACK)) {
|
|
|
|
|
SDL_free(surface);
|
2017-10-02 10:50:33 -07:00
|
|
|
}
|
2015-06-21 17:33:46 +02:00
|
|
|
}
|