Skip to content

Commit

Permalink
Add SDL_MEMALIGNED flag for SDL_Surface using aligned memory.
Browse files Browse the repository at this point in the history
If an SDL_Surface has an aligned memory pointers, it should be freed
using SDL_SIMDFree() (will be used by SDL_ttf).
  • Loading branch information
1bsyl committed Jan 31, 2019
1 parent 7b8bac5 commit e5d194e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions include/SDL_surface.h
Expand Up @@ -53,6 +53,7 @@ extern "C" {
#define SDL_PREALLOC 0x00000001 /**< Surface uses preallocated memory */
#define SDL_RLEACCEL 0x00000002 /**< Surface is RLE encoded */
#define SDL_DONTFREE 0x00000004 /**< Surface is referenced internally */
#define SDL_MEMALIGNED 0x00000008 /**< Surface uses aligned memory */
/* @} *//* Surface flags */

/**
Expand Down
11 changes: 9 additions & 2 deletions src/video/SDL_surface.c
Expand Up @@ -26,6 +26,7 @@
#include "SDL_RLEaccel_c.h"
#include "SDL_pixels_c.h"
#include "SDL_yuv_c.h"
#include "../../cpuinfo/SDL_simd.h"


/* Check to make sure we can safely check multiplication of surface w and pitch and it won't overflow size_t */
Expand Down Expand Up @@ -289,7 +290,7 @@ SDL_HasColorKey(SDL_Surface * surface)
return SDL_FALSE;
}

return SDL_TRUE;
return SDL_TRUE;
}

int
Expand Down Expand Up @@ -1258,7 +1259,13 @@ SDL_FreeSurface(SDL_Surface * surface)
SDL_FreeFormat(surface->format);
surface->format = NULL;
}
if (!(surface->flags & SDL_PREALLOC)) {
if (surface->flags & SDL_PREALLOC) {
/* Don't free */
} else if (surface->flags & SDL_MEMALIGNED) {
/* Free aligned */
SDL_SIMDFree(surface->pixels);
} else {
/* Normal */
SDL_free(surface->pixels);
}
if (surface->map) {
Expand Down

0 comments on commit e5d194e

Please sign in to comment.