mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
Fixed bug 3466 - Can't build 2.0.5 on ppc64
/home/fedora/SDL2-2.0.5/src/video/SDL_blit_N.c: In function 'calc_swizzle32': /home/fedora/SDL2-2.0.5/src/video/SDL_blit_N.c:127:5: error: ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement] const vector unsigned char plus = VECUINT8_LITERAL(0x00, 0x00, 0x00, 0x00, ^
This commit is contained in:
parent
ebf07eb0da
commit
5b14a943a8
@ -118,12 +118,6 @@ calc_swizzle32(const SDL_PixelFormat * srcfmt, const SDL_PixelFormat * dstfmt)
|
|||||||
16, 8, 0, 24,
|
16, 8, 0, 24,
|
||||||
0, NULL
|
0, NULL
|
||||||
};
|
};
|
||||||
if (!srcfmt) {
|
|
||||||
srcfmt = &default_pixel_format;
|
|
||||||
}
|
|
||||||
if (!dstfmt) {
|
|
||||||
dstfmt = &default_pixel_format;
|
|
||||||
}
|
|
||||||
const vector unsigned char plus = VECUINT8_LITERAL(0x00, 0x00, 0x00, 0x00,
|
const vector unsigned char plus = VECUINT8_LITERAL(0x00, 0x00, 0x00, 0x00,
|
||||||
0x04, 0x04, 0x04, 0x04,
|
0x04, 0x04, 0x04, 0x04,
|
||||||
0x08, 0x08, 0x08, 0x08,
|
0x08, 0x08, 0x08, 0x08,
|
||||||
@ -136,6 +130,14 @@ calc_swizzle32(const SDL_PixelFormat * srcfmt, const SDL_PixelFormat * dstfmt)
|
|||||||
Uint32 gmask = RESHIFT(srcfmt->Gshift) << (dstfmt->Gshift);
|
Uint32 gmask = RESHIFT(srcfmt->Gshift) << (dstfmt->Gshift);
|
||||||
Uint32 bmask = RESHIFT(srcfmt->Bshift) << (dstfmt->Bshift);
|
Uint32 bmask = RESHIFT(srcfmt->Bshift) << (dstfmt->Bshift);
|
||||||
Uint32 amask;
|
Uint32 amask;
|
||||||
|
|
||||||
|
if (!srcfmt) {
|
||||||
|
srcfmt = &default_pixel_format;
|
||||||
|
}
|
||||||
|
if (!dstfmt) {
|
||||||
|
dstfmt = &default_pixel_format;
|
||||||
|
}
|
||||||
|
|
||||||
/* Use zero for alpha if either surface doesn't have alpha */
|
/* Use zero for alpha if either surface doesn't have alpha */
|
||||||
if (dstfmt->Amask) {
|
if (dstfmt->Amask) {
|
||||||
amask =
|
amask =
|
||||||
|
Loading…
Reference in New Issue
Block a user