mirror of
https://github.com/yawut/SDL.git
synced 2026-06-10 02:20:09 -05:00
Fixed bug 1225 - Altivec blitters broken due to SDL_PixelFormat
bastien.bouclet@gmail.com 2011-06-13 05:50:58 PDT Static pixel format initialization has not been updated to reflect header changes in SDL_blit_N.c The attached patch fixes Altivec support for me. altivec.h is needed for some systems.
This commit is contained in:
parent
d85a5d0c78
commit
8dcf899fca
|
|
@ -498,9 +498,10 @@ calc_swizzle32(const SDL_PixelFormat * srcfmt, const SDL_PixelFormat * dstfmt)
|
|||
/* ARGB */
|
||||
const static struct SDL_PixelFormat default_pixel_format = {
|
||||
0, NULL, 0, 0,
|
||||
{0, 0},
|
||||
0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000,
|
||||
0, 0, 0, 0,
|
||||
16, 8, 0, 24,
|
||||
0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000,
|
||||
0, NULL
|
||||
};
|
||||
if (!srcfmt) {
|
||||
|
|
|
|||
|
|
@ -28,6 +28,9 @@
|
|||
/* Functions to blit from N-bit surfaces to other surfaces */
|
||||
|
||||
#if SDL_ALTIVEC_BLITTERS
|
||||
#ifdef HAVE_ALTIVEC_H
|
||||
#include <altivec.h>
|
||||
#endif
|
||||
#define assert(X)
|
||||
#ifdef __MACOSX__
|
||||
#include <sys/sysctl.h>
|
||||
|
|
@ -108,9 +111,10 @@ calc_swizzle32(const SDL_PixelFormat * srcfmt, const SDL_PixelFormat * dstfmt)
|
|||
/* ARGB */
|
||||
const static const struct SDL_PixelFormat default_pixel_format = {
|
||||
0, NULL, 0, 0,
|
||||
{0, 0},
|
||||
0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000,
|
||||
0, 0, 0, 0,
|
||||
16, 8, 0, 24,
|
||||
0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000,
|
||||
0, NULL
|
||||
};
|
||||
if (!srcfmt) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user